
window.addEvent('domready',function(){columnsplit();});function columnsplit(){var children=$('content-body').getChildren();half=Math.floor((children.length-1)/2);if(half>1){var firstCol=new Element('div',{id:'firstCol'});$('content-body').adopt(firstCol);var secondCol=new Element('div',{id:'secondCol'});$('content-body').adopt(secondCol);hstop=false;j=0;children.each(function(plus){if(j>0){if(hstop===false){firstCol.adopt(plus);if(j==half){hstop=true;}}else{secondCol.adopt(plus);}}
j++;});}}