﻿function hoveron(location, maplocation)
{

document.getElementById(location).className="location-change";
document.getElementById(maplocation).className="selected";
}


function hoveroff(location, maplocation)
{

document.getElementById(location).className="location";

document.getElementById(maplocation).className="unselected";

}