$(document).ready(function() {
            
     $(function() {
            $('#show img').each(function() {
                $(this).hover(
                    function() {
                        $(this).stop().animate({ height: 200,width: 76,top:-12 }, 200);
                        
                    },
                   function() {
                       $(this).stop().animate({ height: 174,width: 68,top:0 }, 200);
                       
                   })
                });
        });
 }); 





