(function($){$.fn.midify=function(opts){var options=$.extend({},opts);if(typeof options['finalHeight']==undefined||!options['finalHeight']){options['finalHeight']=options['startHeight']+30;}if(typeof options['finalWidth']==undefined||!options['finalWidth']){options['finalWidth']=options['startWidth']+40;}if(typeof options['marginTop']==undefined||!options['marginTop']){options['marginTop']=(options['startHeight']-options['finalHeight'])/2;}if(typeof options['marginLeft']==undefined||!options['marginLeft']){options['marginLeft']=(options['startWidth']-options['finalWidth'])/2;}$(this).each(function(){$(this).mouseenter(function(){$(this).children('img').clearQueue().animate({width:options["startWidth"]+'px',height:options["startHeight"]+'px',marginLeft:'0px',marginTop:'0px'},200);$(this).children(".src-data").slideDown();}).mouseleave(function(){$(this).children('img').clearQueue().animate({width:options["finalWidth"]+'px',height:options["finalHeight"]+'px',marginLeft:options['marginLeft']+'px',marginTop:options['marginTop']+'px'},200);$(this).children(".src-data").slideUp();});$(this).width(options["startWidth"]);$(this).height(options["startHeight"]);$(this).children(".src-data").hide();$(this).children('img').css({width:options["finalWidth"]+'px',height:options["finalHeight"]+'px',marginLeft:options['marginLeft']+'px',marginTop:options['marginTop']+'px'});});};})(jQuery);
