var closeDelay = 700;  // in milliseconds
var theTimer = null;
var timerRunning = false;
var theObject = null;
var theObject2 = null;

function showMenu(object,object2) {
	theObject = object;
	theObject2 = object2;
	if(document.getElementById) { 
		document.getElementById(object).style.visibility = "visible";
		document.getElementById(object2).style.backgroundColor = '#ffffff';
		document.getElementById(object2).style.color = '#000000';
		document.getElementById(object2).style.border = '1px solid #c21820';
		document.getElementById(object2).style.height = '17px';
	}
	else if (document.all) {
		document.all[object].style.visibility = "visible";
		document.all[object2].style.backgroundColor = '#ffffff';
		document.all[object2].style.color = '#000000';
		document.all[object2].style.border = '1px solid #c21820';
		document.all[object2].style.height = '17px';
	}
}

function hideMenu(object,object2) {
	theTimer = setTimeout('hideMenu2()',closeDelay);
	timerRunning = true;
}

function hideMenu2() {
	if (theObject != null && theObject2 != null) {
		if(document.getElementById) { 
			document.getElementById(theObject).style.visibility = "hidden";
			document.getElementById(theObject2).style.backgroundColor = '#c21820';
			document.getElementById(theObject2).style.color = '#FFFFFF';
			document.getElementById(theObject2).style.border = '0px';
			document.getElementById(theObject2).style.height = '19px';
		}
		else if (document.all) {
			document.all[theObject].style.visibility = "hidden";
			document.all[theObject2].style.backgroundColor = '#c21820';
			document.all[theObject2].style.color = '#FFFFFF';
			document.all[theObject2].style.border = '0px';
			document.all[theObject2].style.height = '19px';
		}
	}
}

function cancelHideMenu() {
	if (timerRunning) {
		clearTimeout(theTimer);
	}
}

function hideAll() {
	cancelHideMenu();
	theObject = null;
	theObject2 = null;
	if(document.getElementById) {
		
		document.getElementById('menuHomeLink').style.backgroundColor = '#c21820';
		document.getElementById('menuHomeLink').style.color = '#FFFFFF';
		document.getElementById('menuHomeLink').style.border = '0px';
		document.getElementById('menuHomeLink').style.height = '19px';

		document.getElementById('menuProducts').style.visibility = "hidden";
		document.getElementById('menuProductsLink').style.backgroundColor = '#c21820';
		document.getElementById('menuProductsLink').style.color = '#FFFFFF';
		document.getElementById('menuProductsLink').style.border = '0px';
		document.getElementById('menuProductsLink').style.height = '19px';

		document.getElementById('menuServices').style.visibility = "hidden";
		document.getElementById('menuServicesLink').style.backgroundColor = '#c21820';
		document.getElementById('menuServicesLink').style.color = '#FFFFFF';
		document.getElementById('menuServicesLink').style.border = '0px';
		document.getElementById('menuServicesLink').style.height = '19px';

		document.getElementById('menuSupport').style.visibility = "hidden";
		document.getElementById('menuSupportLink').style.backgroundColor = '#c21820';
		document.getElementById('menuSupportLink').style.color = '#FFFFFF';
		document.getElementById('menuSupportLink').style.border = '0px';
		document.getElementById('menuSupportLink').style.height = '19px';

		document.getElementById('menuNews').style.visibility = "hidden";
		document.getElementById('menuNewsLink').style.backgroundColor = '#c21820';
		document.getElementById('menuNewsLink').style.color = '#FFFFFF';
		document.getElementById('menuNewsLink').style.border = '0px';
		document.getElementById('menuNewsLink').style.height = '19px';

		document.getElementById('menuDownloads').style.backgroundColor = '#c21820';
		document.getElementById('menuDownloads').style.color = '#FFFFFF';
		document.getElementById('menuDownloads').style.border = '0px';
		document.getElementById('menuDownloads').style.height = '19px';

		document.getElementById('menuPartners').style.backgroundColor = '#c21820';
		document.getElementById('menuPartners').style.color = '#FFFFFF';
		document.getElementById('menuPartners').style.border = '0px';
		document.getElementById('menuPartners').style.height = '19px';
		
		document.getElementById('menuCareers').style.backgroundColor = '#c21820';
		document.getElementById('menuCareers').style.color = '#FFFFFF';
		document.getElementById('menuCareers').style.border = '0px';
		document.getElementById('menuCareers').style.height = '19px';


		document.getElementById('menuContact').style.backgroundColor = '#c21820';
		document.getElementById('menuContact').style.color = '#FFFFFF';
		document.getElementById('menuContact').style.border = '0px';
		document.getElementById('menuContact').style.height = '19px';		
	}
	else if (document.all) {
		
		document.all['menuHomeLink'].style.backgroundColor = '#c21820';
		document.all['menuHomeLink'].style.color = '#FFFFFF';
		document.all['menuHomeLink'].style.border = '0px';
		document.all['menuHomeLink'].style.height = '19px';
		
		document.all['menuProducts'].style.visibility = "hidden";
		document.all['menuProductsLink'].style.backgroundColor = '#c21820';
		document.all['menuProductsLink'].style.color = '#FFFFFF';
		document.all['menuProductsLink'].style.border = '0px';
		document.all['menuProductsLink'].style.height = '19px';

		document.all['menuServices'].style.visibility = "hidden";
		document.all['menuServicesLink'].style.backgroundColor = '#c21820';
		document.all['menuServicesLink'].style.color = '#FFFFFF';
		document.all['menuServicesLink'].style.border = '0px';
		document.all['menuServicesLink'].style.height = '19px';

		document.all['menuSupport'].style.visibility = "hidden";
		document.all['menuSupportLink'].style.backgroundColor = '#c21820';
		document.all['menuSupportLink'].style.color = '#FFFFFF';
		document.all['menuSupportLink'].style.border = '0px';
		document.all['menuSupportLink'].style.height = '19px';

		document.all['menuNews'].style.visibility = "hidden";
		document.all['menuNewsLink'].style.backgroundColor = '#c21820';
		document.all['menuNewsLink'].style.color = '#FFFFFF';
		document.all['menuNewsLink'].style.border = '0px';
		document.all['menuNewsLink'].style.height = '19px';
		
		
		document.all['menuCareers'].style.visibility = "hidden";
		document.all['menuCareersLink'].style.backgroundColor = '#c21820';
		document.all['menuCareersLink'].style.color = '#FFFFFF';
		document.all['menuCareersLink'].style.border = '0px';
		document.all['menuCareersLink'].style.height = '19px';

	}
}

function showGoogle() {
	document.getElementById('google').style.visibility = "visible";
}

function hideGoogle() {
	document.getElementById('google').style.visibility = "hidden";
}