/* generic */
$(document).ready(function(){  
     $('.imageGalItem img').animate({width: 50}, 0); //Set all menu items to smaller size  
   
     $('.imageGalItem').mouseover(function(){ //When mouse over menu item  
   
         gridimage = $(this).find('img'); //Define target as a variable  
         gridimage.stop().animate({width: 94}, 150); //Animate image expanding to original size  
   
     }).mouseout(function(){ //When mouse no longer over menu item  
   
         gridimage.stop().animate({width: 50}, 150); //Animate image back to smaller size  
   
     });  
}); 
