$().ready(function() {

  $('.ui-button').hover(
	 function() { $(this).addClass('ui-state-hover'); },
	  function() { $(this).removeClass('ui-state-hover'); }
  ).addClass('ui-state-default ui-corner-all');
  
  $("a.thumb").fancybox();
  
  $('a').hover(function(){
    if (!$(this).attr('anim')){
    $(this).attr('anim',1);
    $(this).animate({ color: "#71b2c1" }, 'fast', function(){
      $(this).removeAttr('anim');
    });
    }
  },function(){
      $(this).attr('anim',1);
      $(this).animate({ color: $(this).attr('color') }, 'slow', function(){
        $(this).removeAttr('anim');
      });
  }).each(function(){
    $(this).attr('color', $(this).css('color') );
  });

  $('.product').hover(function(){
    $(this).addClass('activeproduct');
  },function(){
    $(this).removeClass('activeproduct');
  });

  
});