
(function($){$.fn.insetBorder=function(options){options=$.extend({speed:250,inset:3,borderColor:'white',borderType:"solid",outerClass:"ibe_outer",innerClass:"ibe_inner"},options);return this.each(function(i){var
$el=$(this),ibe_height=$el.outerHeight(),ibe_width=$el.outerWidth();var
wrapper=$("<div />",{"class":options.outerClass,"css":{"width":ibe_width,"height":ibe_height,"overflow":"hidden","top":0,"left":0,"position":"relative"},"mouseenter":function(){$el.next().animate({"top":"-"+options.inset+"px","left":"-"+options.inset+"px","height":ibe_height,"width":ibe_width,"opacity":0.1},{"duration":options.speed,"queue":false,"complete":function(){}});},"mouseleave":function(){$el.next().animate({"top":0,"left":0,"height":(ibe_height-(options.inset*2))+"px","width":(ibe_width-(options.inset*2))+"px","opacity":1},{"duration":options.speed,"queue":false});}}),after=$("<div />",{"class":options.innerClass,"css":{"height":(ibe_height-(options.inset*2))+"px","width":(ibe_width-(options.inset*2))+"px","border":options.inset+"px "+options.borderType+" "+options.borderColor,"position":"absolute","top":0,"left":0}});$el.wrap(wrapper).after(after);});};})(jQuery);
