var schools = ["lsu","rice","tamu","ut"];

var messages = {
	status:"Condition Yellow: Immediate demand for high quality software development for Energy &amp; Water Solutions",
	info:"Change the way you see the world, change your focus on what you can do for the world.  Get involved today in making a difference.  Talk to us at any one of the upcoming campus events.",
	contact:"HTC07Employment@slb.com or softwaresavestheworld@slb.com"
};

function swapMessage(msg){
	var newMSG = messages[msg];
	$('TopStatus').innerHTML = newMSG;
	
}

function swapPageImages(token){
	var imgPath = "images/interface/"+pageLoc+"/";
	
	$('HeaderColor').src = imgPath+token.toString()+"/"+"headercolor.gif";
	$('FooterColor').src = imgPath+token.toString()+"/"+"footer.gif";
	
	$('GetInformed').src = imgPath+token.toString()+"/"+"titles/getinformed.gif";
	$('GetInvolved').src = imgPath+token.toString()+"/"+"titles/getinvolved.gif";
	$('GetMore').src = imgPath+token.toString()+"/"+"titles/getmore.gif";
	$('How').src = imgPath+token.toString()+"/"+"titles/how.gif";
	$('SaveaShirt').src = imgPath+token.toString()+"/"+"titles/saveashirt.gif";
	$('BandTogether').src = imgPath+token.toString()+"/"+"titles/bandtogether.gif";
	
	$('InfoboxHR').src = imgPath+token.toString()+"/"+"infobox_hr.gif";
	
	$('SSTWVert').src = imgPath+token.toString()+"/"+"sstw_vert_left.gif";
	$('StuffHeader').src = imgPath+token.toString()+"/"+"stuff.gif";
}

function changeSchool(school){
	Cookie.set("curTeam", school);
	swapPageImages(school);
}