	startList = function() 
{
	populate_news();
	populate_testimonials();
	highlight();
}

window.onload=startList;

var page = "";

function highlight(){
	if(page!=""){
			document.getElementById(page).className="selected";
			//alert(page);
	}
	
}

function changeTab(which,number){	
	for(i=1;i<number+1;i++){
		document.getElementById('button_'+i).className="button_off";
		document.getElementById('tab_'+i).className="tab_off";
	}
	document.getElementById('button_'+which).className="button_on";
	document.getElementById('tab_'+which).className="tab_on";
}
