$(document).ready (function(){
	if ($("body").attr("id") == "home"){
		$(window).load( function(){
			ReposTelaHome();
		}).resize( function(){
			ReposTelaHome();
		});
	}
});

function ReposTelaHome(){
	var telah = $(window).height();
	
	var conth = telah - 194;
	if (telah<500) conth = 306;
	
	if ($.browser.msie && parseInt($.browser.version)==6){
		$(".contgeral").height(conth);
	} else {
		$(".contgeral").css("minHeight", String(conth)+"px");
	}
}

