/*!
 * jQuery Page Peel plugin v2.0
 * 
 * Copyright 2011 - Gnt Studio
 * info@gntstudio.eu
 * http://www.gntstudio.eu
 */
(function(a){a.fn.pagePeel=function(b){var c={width:200,height:200};var b=a.extend(c,b);a(this).hover(function(){a(this).find("img").stop().animate({width:b.width+"px",height:b.height+"px"})},function(){a(this).find("img").stop().animate({width:"70px",height:"70px"})})}})(jQuery);

