  $(function() {

  $(".item").hover(
    function () {            
        $(this).addClass('itemHover');            
    }, 
    function () {
      $(this).removeClass('itemHover');
    }
  )  
  
});

 $(function() {

  $(".first").hover(
   function () {            
        $(this).addClass('firstHover');            
    }, 
    function () {
      $(this).removeClass('firstHover');
    }
  )  
  
});

function allBrand() {
var objName="#brands";
  if ( $(objName).css('display') == 'none' ) {
    $(objName).animate({height: 'show'}, 300);
    $("#brandsLink").html("Свернуть");
  } else {
    $(objName).animate({height: 'hide'}, 300);
    $("#brandsLink").html("Показать все");
  }
}

function showSort() {
var objName="#optnsBlock";
  if ( $(objName).css('display') == 'none' ) {
    $(objName+'_hide').animate({height: 'hide'}, 10);
    $(objName).animate({height: 'show'}, 500);
  } else {
    $(objName).animate({height: 'hide'}, 300);
    $(objName+'_hide').animate({height: 'show'}, 300);
  }
}
