$(document).ready(function(){
	
	//Zoom em imagens
    $('.img').each(function(){
        var $this = $(this);     
		
        $this.mouseover(function(){
         $this.find('.zoom').show();
        });
      $this.mouseout(function(){        
            $this.find('.zoom').hide();
        });
    });
});

