// JavaScript Document
window.addEvent('domready', function(){
	$$('.corner_box').each(function (itm,idx,obj){
		var myw=itm.getElement('div.statement').getStyle('width').toInt();
		var myh=itm.getElement('div.statement').getStyle('height').toInt()+16;
		myh=(myh%2)?myh+1:myh;
		itm.setStyles({'height':myh+"px",'width':myw+"px"});
		var e0=new Element("div",{'class':"top_left",'html':"&nbsp;"});
		var e1=new Element("div",{'class':"top_right",'html':"&nbsp;"});
		var e2=new Element("div",{'class':"bottom_left",'html':"&nbsp;"});
		var e3=new Element("div",{'class':"bottom_right",'html':"&nbsp;"});
			e0.inject(itm);
			e1.inject(itm);
			e2.inject(itm);
			e3.inject(itm);
	});
});
