$(document).ready(function(){
	$("#center").corner("8px");
	
	$(".calc_descr").corner("8px");
	
	$("#menu_root").corner("8px");
	
	if ($.browser.msie) {
		$(".home_table1 tr th").dropShadow();
	}
	
	$(".search_input").focus(function(){
		$(this).val("");
		$(this).attr("style", "color:#000000");
	});
	
	/*
	$(".search_input").blur(function(){
		$(this).removeAttr("style");
		if($(this).val()!="Поиск по сайту")
			$(this).val("Поиск по сайту");
	});
	*/
	
	if($(window).height() - $("body").height() > 0)
	{
		$("#center").height($("#center").height() + $(window).height() - $("body").height());
	}
	
	$("tr").hover(function(){
		$(this).children("td").children(".calc_name_holder").children(".calc_descr").toggle();
	});
});
