function rollOver(){
	newSize = window.event.srcElement.coords.split(",");
	rollOverValues = window.event.srcElement.id.split(",");
	
	newTop = window.event.srcElement.parentElement.parentElement.style.posTop+parseInt(rollOverValues[0])+parseInt(newSize[1]);
	newLeft = window.event.srcElement.parentElement.parentElement.style.posLeft+parseInt(rollOverValues[2]);
	newHeight = parseInt(rollOverValues[1]);
	newWidth = parseInt(newSize[2])+parseInt(rollOverValues[3])-parseInt(rollOverValues[2]);
	
	highLight.style.top = newTop;
	highLight.style.left = newLeft;
	highLight.style.height = newHeight;
	highLight.style.width = newWidth;
	
	highLight.style.visibility = "visible";
	highLight.style.background = eval(rollOverValues[4]);
	
	for(i=0;i<animateMe.length;i++){
		animateMe[i].style.zIndex = 5;
	}
	if(window.event.srcElement.parentElement.name == "offices_map"){
		popupImage = "about_us_home"
	}else{
		popupImage = window.event.srcElement.parentElement.name.substring(0,window.event.srcElement.parentElement.name.length-4)+"_home"
	}
	document.images(popupImage).parentElement.style.zIndex += 1;
	if(rollOverValues.length==6){
		document.images(popupImage).src = eval(rollOverValues[5]);
	}else{
		var i = 0;
		var n = 0;
		
		for(i=0;i<document.all.length;i++){
			if(document.all(i).id == "animateMe"){
				//alert(oldImageArray[n])
				document.all(i).children[0].src = oldImageArray[n]
				n++
			}
		}
	}
}

function rollOut(){
	highLight.style.visibility = "hidden";
}

