$().ready(function() {
     	
      	$('.price').click(function() {
      		$('.price_form').show();
		//alert("get price");		
		return false;
	});
   
      	var searchLabel ='Найти в каталоге';
	$('.search-str').focus(function() {
		//alert('this_val='+this.value);
		if (this.value == searchLabel) {$(this).val('');};
	});
	$('.search-str').blur(function() {
		if (this.value == '') {$(this).val(searchLabel);}
	});
		
		
	$(".search-btn").click(function () {
		var s = $('.search-str').val();		
		if (s==searchLabel || s=='')return false;
      	});
	
});
