// this function is to highlight the text link for the provinces when the user rolls over the same province on the map...
function highlightProv(province,status) {
x=document.getElementById(province);
// status = 1 (highlight)
if (status == 1) {
	x.style.color="#5f0022";
	x.style.fontWeight="700";
		}
// status = 2 (unhighlight)
if (status == 2) {
	x.style.color="#000000";
	x.style.fontWeight="300";
	}		
}


function highlightLinks(first,last,status) {



for (i=first;i<=last;i++)  {

y=document.getElementById("st"+i);
if (status == 1) {
	y.style.color="#5f0022";
	y.style.fontWeight="700";
	}
// status = 2 (unhighlight)
if (status == 2) {
	y.style.color="#000000";
	y.style.fontWeight="300";
	}
}
}


