// JavaScript Document

function setOpacity() 
{
	document.getElementById("location1").style.opacity =".6";
	document.getElementById("location1").style.filter = "alpha(opacity=60)"; // for IE
	document.getElementById("location2").style.opacity =".6";
	document.getElementById("location2").style.filter = "alpha(opacity=60)"; // for IE
	document.getElementById("location3").style.opacity =".6";
	document.getElementById("location3").style.filter = "alpha(opacity=60)"; // for IE
	
	document.getElementById("location1").onmouseover = rollOver;
	document.getElementById("location2").onmouseover = rollOver;
	document.getElementById("location3").onmouseover = rollOver;
	
}

window.onload = setOpacity;



function rollOver()
{
	this.style.opacity ="1";
	this.style.filter = "alpha(opacity=100)";// for IE
	
	this.onmouseout = rollOut;
}

function rollOut()
{
	this.style.opacity = ".6";
	this.style.filter = "alpha(opacity=60)";// for IE
	
}
	



