var JCaption=new Class({initialize:function(b){this.selector=b;var a=$$(b);a.each(function(c){this.createCaption(c)},this)},createCaption:function(d){var b=document.createTextNode(d.title);var a=document.createElement("div");var f=document.createElement("p");var e=d.getAttribute("width");var g=d.getAttribute("align");var c=document.documentMode;if(!g){g=d.getStyle("float")}if(!g){g=d.style.styleFloat}f.appendChild(b);f.className=this.selector.replace(".","_");if(g=="none"){if(d.title!=""){d.parentNode.replaceChild(f,d);f.parentNode.insertBefore(d,f)}}else{d.parentNode.insertBefore(a,d);a.appendChild(d);if(d.title!=""){a.appendChild(f)}a.className=this.selector.replace(".","_");a.className=a.className+" "+g;a.setAttribute("style","float:"+g);if(!c||c<8){a.style.width=e+"px"}}}});document.caption=null;window.addEvent("load",function(){var a=new JCaption("img.caption");document.caption=a});
