<!--//TIMER
var timerID;
function startTimer(){
	if (timerID==null){
		timerID = window.setTimeout('HideAll()',1000);
	}
}
function stopTimer(){
	if (timerID!=null){
		window.clearTimeout(timerID);
		timerID = null;
	}
}
//-->
<!--//IMAGE POSITION
var tempEl;
function getRealLeft(imgElem){
	if(ns4){
		xPos=imgElem.x;
	}else if(!exclude){
		xPos=eval(imgElem).offsetLeft;
		tempEl=eval(imgElem).offsetParent;
		while(tempEl!=null){
			xPos+=tempEl.offsetLeft;
			tempEl=tempEl.offsetParent;
		}
	}
	if(is_ie && is_mac){
		xPos+=parseInt(document.body.leftMargin);
	}
	return xPos;
};
function getRealTop(imgElem){
	if(ns4){
		yPos=imgElem.y;
	}else if(!exclude){
		yPos=eval(imgElem).offsetTop;
		tempEl=eval(imgElem).offsetParent;
		while(tempEl!=null){
			yPos+=tempEl.offsetTop;
			tempEl=tempEl.offsetParent;
		}
	}
	if(is_ie && is_mac){
		yPos+=parseInt(document.body.topMargin);
	}
	return yPos;
};
//-->
<!--//MENUS
var imgObj;
function ShowMenu(menuID)
{
	stopTimer();
	
	//find image object
	imgObj = document.images["dots_"+menuID];
	xPos = getRealLeft(imgObj);
	yPos = getRealTop(imgObj);

	if (menuID != null && menuID != 'contact_us'){
		yPos = yPos + (parseInt(imgObj.height));
		
		if (is_ie){
			eval(menuID).className = "menuOn";
			eval(menuID).style.left = xPos;
			eval(menuID).style.top = yPos;
			eval(menuID).style.visibility = 'visible';
		}else{
			document.getElementById(menuID).className = "menuOn";
			document.getElementById(menuID).style.left = xPos;
			document.getElementById(menuID).style.top = yPos;
			document.getElementById(menuID).style.visibility = 'visible';
		}
	}
}
function HideAll()
{
	if (is_ie){
		eval('profile').className = "menuOff";
		eval('profile').style.visibility = 'hidden';
		eval('business').className = "menuOff";
		eval('business').style.visibility = 'hidden';
		eval('news').className = "menuOff";
		eval('news').style.visibility = 'hidden';
		eval('careers').className = "menuOff";
		eval('careers').style.visibility = 'hidden';
	}else{
		document.getElementById('profile').className = "menuOff";
		document.getElementById('profile').style.visibility = 'hidden';
		document.getElementById('business').className = "menuOff";
		document.getElementById('business').style.visibility = 'hidden';
		document.getElementById('news').className = "menuOff";
		document.getElementById('news').style.visibility = 'hidden';
		document.getElementById('careers').className = "menuOff";
		document.getElementById('careers').style.visibility = 'hidden';
	}
}
function ShowArrow(opt)
{
	stopTimer();
	var imgName = "Img" + opt.id ;
	if (is_ie){
		eval(imgName).className = "ImgOn";
	}else{
		document.getElementById(imgName).className = "ImgOn";
	}
}
function HideArrow(opt)
{
	startTimer();
	var imgName = "Img" + opt.id ;
	if (is_ie){
		eval(imgName).className = "ImgOff";
	}else{
		document.getElementById(imgName).className = "ImgOff";
	}
}	
function ShowLeftArrow(opt)
{
	var len = opt.id.length;
	var optName = opt.id;
	var imgName = "LeftImg" + opt.id.substr(4,len);
	var divName = "div" + opt.id.substr(4,len);
	if (is_ie){
		eval(imgName).className = "arrowson";
	}else{
		document.getElementById(imgName).className = "arrowson";
	}
}	
function HideLeftArrow(opt)
{
	var len = opt.id.length;
	var optName = opt.id;
	var imgName = "LeftImg" + opt.id.substr(4,len);
	if (is_ie){
		eval(imgName).className = "arrowsoff";
	}else{
		document.getElementById(imgName).className = "arrowsoff";
	}
}			
function ShowLeftArrow2(opt)
{
	var len = opt.id.length;
	var optName = opt.id;
	var imgName = "LeftImg" + opt.id.substr(4,len);
	var divName = "div" + opt.id.substr(4,len);
	if (is_ie){
		eval(imgName).className = "arrowson2";
	}else{
		document.getElementById(imgName).className = "arrowson2";
	}
}	
function HideLeftArrow2(opt)
{
	var len = opt.id.length;
	var optName = opt.id;
	var imgName = "LeftImg" + opt.id.substr(4,len);
	var divName = "div" + opt.id.substr(4,len);
	if (is_ie){
		eval(imgName).className = "arrowsoff2";
	}else{
		document.getElementById(imgName).className = "arrowsoff2";
	}
}
//-->
 