var bottom_elements = new Array();
var bottom_columns = new Array();
var bottom_columns_max = new Array();

var information_default;

function init(){
	
	rayogramInitialize()
	
	if(typeof leftcolumn != 'undefined'){
		bottom_elements[0] = bottom;
		bottom_elements[1] = leftcolumn;
		bottom_elements[2] = extension;
		bottom_elements[3] = middlecolumn;
		bottom_elements[4] = rightcolumn;
	
		bottom_columns[0] = leftcolumn;
		bottom_columns[1] = extension;
		bottom_columns[2] = middlecolumn;
		bottom_columns[3] = rightcolumn;
		
		bottom_columns_max[0] = 545;
		bottom_columns_max[1] = -1;
		bottom_columns_max[2] = 272;
		bottom_columns_max[3] = 180;		
	}
	else{
		if(typeof twocolumn != 'undefined'){
			bottom_elements[0] = bottom;
			bottom_elements[1] = extension;
			bottom_elements[2] = twocolumn;
			bottom_elements[3] = onecolumn;
		
			bottom_columns[0] = onecolumn;
			bottom_columns[1] = twocolumn;
			bottom_columns[2] = extension;
			
			bottom_columns_max[0] = 272;
			bottom_columns_max[1] = 725;
			bottom_columns_max[2] = -1;	
		}
		else {
			bottom_elements[0] = bottom;
			bottom_elements[1] = extension;
			bottom_elements[2] = threecolumn;
			bottom_elements[3] = fourcolumn;
		
			bottom_columns[0] = threecolumn;
			bottom_columns[1] = fourcolumn;
			bottom_columns[2] = extension;
			
			bottom_columns_max[0] = 136;
			bottom_columns_max[1] = 825;
			bottom_columns_max[2] = -1;	
		}
	}
	
	matchHeights(bottom_elements);

	
	container.setMinimumWidth(802);

	if((!is_msie) || (typeof services == 'undefined')){
		columnizeFull(bottom_columns, bottom_columns_max);
		window.addResponse("resize","columnizeFull(bottom_columns, bottom_columns_max);");
	}
	
	information_default = information.innerHTML;
	
	information.className = "";
	
	if(is_msie){
		var allforms = document.getElementsByTagName("form");
		
		for(i=0; i<allforms.length; i++){
			allforms[i].setStyle("marginTop", "0px");
		}
		
		if(typeof services != 'undefined'){
			services.setStyle("width", "161px");
		}
	}
}

addResponse("load","init()");