/** 
 * Effet page cornée 
 * par Jay Salvat - http://blog.jaysalvat.com/ 
 */ 
$(function() { 
    $('#corner img').hover(function() { 
        $(this).stop().animate({ width:'200px', height:'200px' }); 
    }, function() { 
        $(this).stop().animate({ width:'80px', height:'80px' }); 
    }); 
}); 

