$(document).ready(function ()
	$("#search .input").focus(function() {
		if ($(this).attr("value") == "поиск")  {
			$(this).attr("value", "")
		}
		$(this).css("color", "#000");		
	});
	$("#search .input").blur(function() {
		if ($(this).attr("value") == "")  {
			$(this).attr("value", $(this).attr("title"));
		}
		$(this).css("color", "#C2A061");
	});
});
