// Bryan - Tricks are for Kids
$(document).ready(function() {
     
     //when mouse enters 'cover', 'cover' will animate to 35px from the top  
    $('.learnmore').mouseover(function() {
      $(this).parent().find('.cover').stop().delay(100).animate({top: '35px'});
      
     // When mouse leaves 'cover', 'cover' will go back down to 380px from the top
    $('.prodwrap').mouseleave(function() {
         $(this).parent().find('.cover').stop().animate({top: '380px'})
        });       
   }); 
      
      // main image - slideshow
      $('#mainSlide').cycle({fx:'fade', speed:  250, timeout:  7500 });
      
   });
 
