document.onmouseover=butOver;
document.onmouseout=butOut;
document.onclick=butStation;
function butOver()
{ var activeItem=window.event.srcElement;
if(activeItem.className=="butnormal")
	{activeItem.className="butover";
	}
}
function butOut()
{ var activeItem=window.event.srcElement;
if(activeItem.className=="butover")
	{activeItem.className="butnormal";
	}
}
function itemlink(link,target)
{
if(target==null)
{ window.location.href=link;
}
else{
parent.frames[target].location.href=link;
}
}
function butStation()
{travel.className="butnormal";
where.className="butnormal";
reason.className="butnormal";
agent.className="butnormal";
tourism.className="butnormal";
map.className="butnormal";
festival.className="butnormal";
bagan.className="butnormal";
eco.className="butnormal";
beaches.className="butnormal";
tourist.className="butnormal";
hobby.className="butnormal";
var activeItem=window.event.srcElement;
activeItem.className="butactive";
}


