$(document).ready(function(){
	/* stretching left and right boxes down to the all page height */
	$("#leftBox, #rightBox").each(function(){
		if($("#content").height() + 20 > $(this).height()){
			var property = $.browser.msie ? "height" : "min-height";
			$(this).css(property,$("#content").height()+20);
		}
	});
	$("#leftBox, #rightBox").each(function(){
		$(this).height(Math.max($("#leftBox").height(),$("#rightBox").height()));
	});
	/* ----------------------------------------------------------- */
});
