// JavaScript Document
$(document).ready(
function()
{
	var ie = 0/*@cc_on+@_jscript_version*10@*/;
	if (ie == '56')
	{
		$("table td#logo").html('<img src="images/logo.jpg" width="325">');
		$(".PNGimg").ifixpng();
	}
	else
	{
		$("table td#logo").html('<img src="images/logo.png" class="anim" width="250">');
	}
	
	$("table td#logo").hover(
	function()
	{
		$(this).children("img.anim").animate({ width : "325px" },600);
	},	
	function()
	{
		$(this).children("img.anim").animate({ width : "200px" },350).animate({ width : "250px" },200);
	}						 
	);
	
	/*$("table#left_menu ul li").hover(
		function(){
			$(this).animate({backgroundColor : "red"},100);		
		},
		function(){
			$(this).removeCss({backgroundColor});	
		}
	);*/
	
	var search_str = 'Что ищем?'
	
	$("#search_form :text").focus(
		function()
		{
			if ($(this).val() == search_str)
			{
				$(this).val('');
			}
		}
	);
	
	$("#search_form :text").blur(
		function()
		{
			if ($(this).val() == '')
			{
				$(this).val(search_str);
			}
		}
	);
	
	$("#search_form :text").click(
		function()
		{
			if ($(this).val() != search_str)
			{
				$(this).select();
			}
		}
	);
}
);
