$(function(){

	// форма поиска
    $("input#string").bind("click", function(){
		$(this).attr("value", "");
	}).bind("blur", function(){		if ($(this).attr("value") == "") {
			$(this).attr("value", "поиск");
		}
	}).hover(function(){
		$(this).css("border-color", "#be4800");
	}, function(){
   		$(this).css("border-color", "#5882a2");
	});

    $("input#string_in").hover(function(){
		$(this).css("border-color", "#be4800");
	}, function(){
   		$(this).css("border-color", "#5882a2");
	});

});

