function initPage(){	var buttons = document.getElementsByTagName("a");	for(var i = 0; i < buttons.length; i++)	{		if(buttons[i].className.indexOf("button") != -1)		{			buttons[i].onmousedown = function()			{				if(this.className.indexOf("press") == -1) this.className += " press";			}			buttons[i].onmouseup = function()			{				this.className = this.className.replace("press","");			} 		}	}}if (window.addEventListener)	window.addEventListener("load", initPage, false);else if (window.attachEvent && !window.opera)	window.attachEvent("onload", initPage);
