// JavaScript Document
var agt=navigator.userAgent.toLowerCase();
var is_ie   = (agt.indexOf("msie") != -1);

function sound()
{
	document.all.buttons.src = "sounds/slap_shot.wav"
}

function mouseon(tmp)
{         		
   menuitem = tmp;
   menuitem.style.color="#B00000";
   if (is_ie)
   {            
   	menuitem.style.cursor = "hand";	
   } else {
    menuitem.style.cursor = "pointer";
   }
   menuitem.style.background = "#FFFFFF"
}

function mouseoff(tmp)
{
   menuitem = tmp;
   menuitem.style.color="#ffffff";
   menuitem.style.background = ""
}

function pagechange(tmp)	
{	
	window.location = tmp;	
}
