function zoomHover(element){
     
      $(element).hover(function() {
      $(this).css('z-index','190');

      $(this).find('img').addClass("hover").stop() 
      .animate({  
            marginTop: '-50px', 
            marginLeft: '-70px',
            
            width: '254px', 
            height: '254px' 
      }, 200,function(){
			$(this).parents("div:first").find('div').addClass("img_box_title").stop().animate({opacity: 1.0,}, 200);  
      });
      
      
      } ,
      function() {
      	
            $(this).css('z-index' , '10'); 
           	$(this).find('div').stop().animate({opacity: ''}, 1).removeClass("img_box_title");
           	$(this).find('img').removeClass("hover").stop() 
           . animate({ 
	               /* riallineo l'immagine */
	               marginTop: '0', 
	               marginLeft: '0', 
	
	               /* imposto le dimensioni originali */ 
	               width: '109px',
	               height: '109px' }
	        , 400, function(){ $(this).parent().css('z-index' , '0'); });
     });
}
