$(document).ready(function(){
	$(document).pngFix();
});
	
$(document).ready(function(){
	$("#sstring").click(function(){
		if ($(this).attr("value") == "Поиск по сайту") {
			$(this).attr("value", "");
		}
	});
});

$(document).ready(function(){
	$("#sbtn").mouseover(function(){
		$(this).attr("src", "/tmp/sbtnh.gif");
	});
	$("#sbtn").mouseout(function(){
		$(this).attr("src", "/tmp/sbtn.gif");
	});
});
