var currSection = "overview"
function showSection( a ){
	
	var newSection = a.id.replace( "Link", "" );
	
	document.getElementById( currSection + "Div" ).style.display = "none";
	flip[currSection + "Img"].resurect();
	
	document.images["projectLargeImg"].src = document.images["projectLargeImg"].src.replace( currSection, newSection );
	
	document.getElementById( newSection + "Div" ).style.display = "block";
	document.images[ newSection + "Img" ].src = document.images[ newSection + "Img" ].src.replace("_off","_on");
	flip[newSection + "Img"].killFlip("on");
	currSection = newSection;
}
init('showSection( document.getElementById("overviewLink") )');