var t_height,t_gap, container_height=0;
jQuery(document).ready(function(){
	jQuery("#mainsearchform").hide();
	jQuery("#mainsearch").hover(
		function () {jQuery("#mainsearchform").show();},
		function () {jQuery("#mainsearchform").hide();}
	);	
	checkheight();
	//setInterval("checkheight()",2000);
//	alert("hi");
});

function checkheight(){
	if(container_height!=jQuery("#container").height()){
		jQuery("#container").css({"padding-bottom":"0px","margin-bottom":"0px"});
		t_height=jQuery("#container").height();
		t_gap=Math.ceil(t_height/46)*46-t_height;
		
		jQuery("#container").css({"padding-bottom":t_gap+"px"});
		container_height=jQuery("#container").height();
	}
}
