// Navigation Properties

var webSiteWidth = 750;
var curNav = null;
var delay = 250;
var timer = 0;

// Navigation Functions

function showSub( subName, xOffset ){
	var e, windowWidth, webSiteLeft;
	cancelHide();
	hideSubNavigation();
	e = document.getElementById(subName);
	windowWidth = document.all ? document.body.clientWidth : window.innerWidth;
	webSiteLeft = (windowWidth - webSiteWidth)/2;
	if( webSiteLeft < 0 ) webSiteLeft = 0;
	e.style.left = webSiteLeft + xOffset;
	e.style.visibility = 'visible';
	curNav = subName;
}
function hideSubNavigation(){
	if( curNav != null ){
		e = document.getElementById(curNav);
		e.style.visibility = 'hidden';
		curNav = null;
	}
}
function hideSub(){
	timer = setTimeout('hideSubNavigation()', delay);
}
function cancelHide(){
	clearTimeout(timer);
	timer = 0;
}
function navOver(e){
	e.style.backgroundColor = '#F0F1E3';
	e.style.color = '#CCCC9A';
}
function navOut(e){
	e.style.backgroundColor = '#CCCC9A';
	e.style.color = '#000000';
}
function navOver2(e){
	e.style.backgroundColor = '#FAE9CB';
	e.style.color = '#EDB954';
}
function navOut2(e){
	e.style.backgroundColor = '#EDB954';
	e.style.color = '#EDB954';
}
function navOver3(e){
	e.style.backgroundColor = '#D8DFE9';
	e.style.color = '#7B93B5';
}
function navOut3(e){
	e.style.backgroundColor = '#7B93B5';
	e.style.color = '#EDB954';
}
