function showAhref(){
iAh=document.getElementById("topMen").getElementsByTagName("A");
	for(i=0;i<iAh.length;i++){
		if(location.href==iAh[i].href){iAh[i].style.backgroundPosition='0 -50px';iAh[i].style.height='68px';iAh[i].style.cursor='default';}
			else{}
	}
	
iiAh=document.getElementById("menleft").getElementsByTagName("A");
	for(i=0;i<iiAh.length;i++){
		if(location.href==iiAh[i].href){iiAh[i].style.textDecoration='none';iiAh[i].style.cursor='default';}
			else{}
	}
}
window.onload = showAhref;


