;jQuery(function($) {
	$("input#search")
		.focus(function() {
			if ($(this).val() == "поиск") {
				$(this).val("");
			}
		})
		.blur(function() {
			$(this).val($.trim($(this).val()));
			if ($(this).val() == "") {
				$(this).val("поиск");
			}
		});
});
