function init(){
	/*
	var welcome = $('welcome').offsetHeight
	var news = $('news_wrap').offsetHeight
	var features = $('features_wrap').offsetHeight 
	
	//Set the hight to be the tallest of the three
	var arr = new Array();
	arr[0] = welcome;
	arr[1] = news;
	arr[2] = features;
	
	//Sort the array
	sizes = arr.sort(sortNumber)
	//Count the array items
	var l = sizes.length
	//Set the max height
	var max_height = arr[l-1]
		
	//Set the new heights
	$('welcome').style.height = max_height + 'px'
	$('news_wrap').style.height = max_height + 'px'
	$('features_wrap').style.height = max_height + 'px'
	*/
	
}

function sortNumber(a,b){
	return a - b;
}