jQuery.fn.supersleight=function(a){a=jQuery.extend({imgs:true,backgrounds:true,shim:"x.gif",apply_positioning:true},a);return this.each(function(){jQuery.browser.msie&&parseInt(jQuery.browser.version,10)<7&&parseInt(jQuery.browser.version,10)>4&&jQuery(this).find("*").andSelf().each(function(h,f){var b=jQuery(f);if(a.backgrounds&&b.css("background-image").match(/\.png/i)!==null){var d=b.css("background-image"),g=d.substring(5,d.length-2),e=b.css("background-repeat")=="no-repeat"?"crop":"scale",c={filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+g+"', sizingMethod='"+e+"')","background-image":"url("+a.shim+")"};b.css(c)}if(a.imgs&&b.is("img[src$=png]")){var c={width:b.width()+"px",height:b.height()+"px",filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+b.attr("src")+"', sizingMethod='scale')"};b.css(c).attr("src",a.shim)}a.apply_positioning&&b.is("a, input")&&(b.css("position")===""||b.css("position")=="static")&&b.css("position","relative")})})};
