window.addEvent('domready',function(){$$('.out-conner').each(function(img){img=$(img);var width=img.getWidth();var height=img.getHeight();var container=new Element('div',{'class':'img-con','styles':{'background-image':'url('+img.src+')','width':width+'px','height':height+'px'}});var top_left=new Element('div',{'class':'con-item','styles':{'background-position':'-10px -10px','width':width+'px','height':height+'px'}});var top_right=new Element('div',{'class':'con-item','styles':{'background-position':(width-10)+'px -10px','width':width+'px','height':height+'px'}});var bottom_left=new Element('div',{'class':'con-item','styles':{'background-position':'-10px '+(height-10)+'px','width':width+'px','height':height+'px'}});var bottom_right=new Element('div',{'class':'con-item','styles':{'background-position':(width-10)+'px '+(height-10)+'px','width':width+'px','height':height+'px'}});top_left.injectInside(container);top_right.injectInside(top_left);bottom_left.injectInside(top_right);bottom_right.injectInside(bottom_left);container.injectInside($(img).parentNode);img.destroy();});});