// JavaScript Document
window.addEvent('domready', function(){
	bottomwrapSize  = $('bottomwrap').getSize();
	contentSize		= $('content').getSize();	
	if(!$('rightcontent')) { /* NO RIGHT COLUMN */
		if(!$('leftwrap')) {
			bottomwrapWidth = contentSize.size['x'];
			bottomleftwrapWidth = bottomwrapWidth - 32;			
		}
		else
		{
			bottomwrapWidth = bottomwrapSize.size['x'];
			bottomleftwrapWidth = bottomwrapWidth-12;
		}
		if($('bottomwrap')) $('bottomwrap').setStyle('width', bottomleftwrapWidth +'px');
		if($('bottomleftwrap')) $('bottomleftwrap').setStyle('width', bottomleftwrapWidth+'px');
		bottomleftwrapWidth = bottomleftwrapWidth - 2;
		if($('mainbody')) $('mainbody').setStyle('width', bottomleftwrapWidth+'px');
		if($('user1')){
			$$('div#user1 div.moduletable').setStyle('width', (bottomleftwrapWidth+14)+'px');
			$$('div#user1 div.moduletable h3').setStyle('width', (bottomleftwrapWidth+6)+'px');
			$$('div#user1 div.modulecontent').setStyle('width', bottomleftwrapWidth+'px');
		}
		bottomleftwrapWidth = bottomleftwrapWidth + 16;
		if($('topusermods')){
		 $('topusermods').setStyle('width', bottomleftwrapWidth+'px');
		}
	}
	else if(!$('leftwrap')) {
		contentWidth = contentSize.size['x'];
		contentWidth = contentWidth - 16;
		if($('rightcontent')) {
			rightcontentSize = $('rightcontent').getSize();
			rightcontentWidth   = rightcontentSize.size['x'];
			bottomleftwrapWidth = contentWidth - rightcontentWidth - 8;
		}
		else
			bottomleftwrapWidth = contentWidth;

		if($('bottomwrap')) $('bottomwrap').setStyle('width', contentWidth+'px');	
		if($('bottomleftwrap')) $('bottomleftwrap').setStyle('width', bottomleftwrapWidth+'px');
		bottomleftwrapWidth = bottomleftwrapWidth - 16;
		if($('mainbody')) $('mainbody').setStyle('width', bottomleftwrapWidth+'px');
	}
});
