
function init(){
	initText();
	initNav();
}
function initText(){
	document.getElementById("index").innerHTML = loc_home;
	document.getElementById("whatWeDo").innerHTML = loc_whatWeDo;
	document.getElementById("ourWork").innerHTML = loc_ourWork;
	document.getElementById("whatTheySay").innerHTML = loc_whatTheySay;
	document.getElementById("contactUs").innerHTML = loc_contactUs;
	document.getElementById("aboutUs").innerHTML = loc_aboutUs;

	document.getElementById("copyright").innerHTML = loc_copyright;
}
function initNav(){
	var theLoc = location.href;
	var theID = theLoc.substring( theLoc.lastIndexOf('/')+1, theLoc.lastIndexOf('.') );
	if( theLoc.lastIndexOf('/') > theLoc.lastIndexOf('.') ){
		theID = "index";
	}
	document.getElementById( theID ).className = "navHover navActive";
}
function navHoverOn( e ){
	if( e.className.indexOf("navActive") > 0 ){
		return;
	}
	e.className = "navHover";
}
function navHoverOff( e ){
	if( e.className.indexOf("navActive") > 0 ){
		return;
	}
	e.className = "";
}
function navClick( e ){
	var currLoc = location.href.substring( 0, location.href.lastIndexOf('/')+1 );
	if( e == "home" ){
		location.href = currLoc + "index.html";
	}
	else{
		location.href = currLoc + e + ".html";
	}
}

