$(document).ready(function(){
	var w = $('.container').innerWidth();
	var h = w/3;
	$('canvas').css('height',h);
	$('canvas').css('width',w);
	$('canvas').css('background','black');
	// alert(h);
	$(window).resize(function(){
		w = $('.container').innerWidth();
		h = w/3;
		$('canvas').css('height',h);
		$('canvas').css('width',w);
		//booldraw = true;
		w = $(window).height();
		wd=w-$('.container').height();
		wb = w/2+wd;
		
	});
});

