jQuery(document).ready(		
function()
{
	//jQuery.delay(1000).box();
	$("body").css({"background-color": "#fff"})
	.delay(1000).queue(function () {box();})
}						
);


function box()
{
	var wys = jQuery('#home_content').height();
	jQuery('#box_right').css("height", wys + 'px');
	jQuery('#box_left').css("height", wys + 'px');
	jQuery('#box_binary_left').css("height", wys-2 + 'px');
	jQuery('#box_binary').css("height", wys-2 + 'px');
}