// JavaScript Document
//array of menus
var arrMenus = ["Solutions","Products","Services","Customers","News","About"];

//function to change class of object and cursor
function onMoMo(obj, daClass) {
	obj.className = daClass;
	obj.style.cursor = 'pointer';
}
/*
//function to dim all images and highlight only image mouse-overed
function hideOthers ( daImg, obj ) {
	if(obj)
		obj.style.cursor = 'pointer';
	for(var i in arrMenus) {
		var objImg = document.getElementById( "img" + arrMenus[i] );
		if( daImg != arrMenus[i] )
			objImg.src = "images/menu" + arrMenus[i] + "_off.gif";
	}
}

//function to reset all images to bright/normal ones
function resetAll () {
	for(var i in arrMenus) {
		var objImg = document.getElementById( "img" + arrMenus[i] );
		objImg.src = "images/menu" + arrMenus[i] + ".gif";
	}
}
*/

function turnHand (obj) {
	obj.style.cursor = 'pointer';	
}

//function to go to a link
function goTo ( href ) {
	location.href = href;
}