$(document).ready(function() {
$('.breadcrumb a').last().addClass('end');
$('.in_menu li').first().addClass('first');
$(".descr_cat p").first().addClass("show_p");
$(".tabs_product .box").hide()
$(".tabs_product .box.show").show()

$("#dialog").jqm();

 $("#manufid div.item").hover(function () {
      $(this).toggleClass("hover");
    });
	$("#manufid div.item").click(function () {
                if ($(this).children('input').is(":checked"))
				    $(this).addClass("hover_click");
                    
                else
                    $(this).removeClass("hover_click");
            });


$('.tmpSlide').hide();
$(".tmpSlide").first().show();


$('input[type="text"]').focus(function() {
    		    if (this.value == this.defaultValue){ 
    		    	this.value = '';
				}
				if(this.value != this.defaultValue){
	    			this.select();
	    		}
    		});
    		$('input[type="text"]').blur(function() {
    		    if ($.trim(this.value) == ''){
			    	this.value = (this.defaultValue ? this.defaultValue : '');
				}
    		});



         var index = 0;
      $(".product_block").each(function (i) {
         index= i+1;
         if(index%3==0){
            $(this).addClass('no_pad');
         }
      });
});

  


