$(document).ready(function() {
	/* высоту блоков делаем */
	/*var leftPartH = $(".gsLeft").height();
	var centerPartH = $(".gsCenter").height();
	var rightPartH = $(".gsRight").height();*/
	
	/*var totalContentH = leftPartH;
	if( totalContentH < centerPartH )
		totalContentH = centerPartH;
	else if(totalContentH < rightPartH)
		totalContentH = rightPartH;
	*/
	//alert(totalContentH);
	
	/*$(".gsLeft").height(totalContentH + 'px');
	$(".gsCenter").height(totalContentH + 'px');
	$(".gsRight").height(totalContentH + 'px');*/

	var footerH = $("#footer").height();
	$(".window").css("padding-bottom",footerH + 'px');
	//alert($(document).height());
	/* делаем футер css */
	//alert($(window).height()+' '+$(document).height());
	if( $(window).height() >= $(document).height() )
		$("#footer").css("top",$(document).height()-footerH+'px');
	else
		$("#footer").css("bottom",'0px');
	//$("#footer").css("bottom","0px");
	
});
