jQuery(window).load(function(){
	var massiv = jQuery(".cat-1");
	massiv.hover(
      function () {
        jQuery(this).addClass("hover");
      }, 
      function () {
        jQuery(this).removeClass("hover");
      }
    );
});
