// JavaScript Document
$(document).ready(
function()
{
	$("table#left_menu td a:not(.act)").hover(
		function()
		{
			$(this).parent('td').addClass('h');
		},
		function()
		{
			$(this).parent('td').removeClass('h');
		}
	);
	
	$.ifixpng('images/1.gif');	
	$(".PNGimg").ifixpng();
	
var search_str = 'Что ищем?'
	$("#search_form :text").focus(
	function()
		{
		if ($(this).val() == search_str)
			{
				$(this).val('');
			}
		}
	);	
}
);
