$(document).ready(function() {
  $('.alertTrigger').click(function(e){
    $('.alert').css('left', e.pageX-70);
    $('.alert').css('top', e.pageY-50);
    $('.alert').fadeIn(300).delay(1200).fadeOut(300);
  });
});

$(document).ready(function(){
  $('.categoryobject').hover(function(){
    $('.product-slot-large.active').stop().removeClass('active').hide();
    $(this).children('.product-slot-large').addClass('active').fadeIn( 150, "easeOutQuad");    
    }, function(){
    $(this).children('.product-slot-large').removeClass('active').fadeOut( 50, "easeOutQuad");
  });
});


