$(document).ready(function() {             
  
  //Peek-a-boo Box
  //http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/
       //SlideUp  
       $('.boxgrid.slideup').hover(function(){  
           $(".cover", this).stop().animate({bottom:'0px'},{queue:false,duration:300});  
       }, function() {  
           $(".cover", this).stop().animate({bottom:'-60px'},{queue:false,duration:300});  
       });  
  //jQuery FancyBox
      $(".PopUp").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true, 'overlayOpacity' : .8 });
});

