$(document).ready(function() {
	$("#search").focus(function() {
		if($(this).val() == 'Хайлт...') {
			$(this).removeClass("sgray");
			$(this).val('');
		}
	});
	
	$("#search").blur(function() {
		if($(this).val() == '') {
			$(this).addClass("sgray");
			$(this).val('Хайлт...');
		}
	});
	
	$(".search_btn").click(function() {
		if($("#search").val() != '' && $("#search").val() != 'Хайлт...') $("#sform").submit();
	});
});