function zodiaclink(sign) 
{ 
alert(sign); 
} 

function loadURL(button) 
{ 
switch (button)
{
case "Button1":
  parent.location.href="http://thephilosopherstone.ca/index.htm";
  break;
case "Button2":
  parent.location.href="http://thephilosopherstone.ca/Tarot/index.htm";
  break;
case "Button3":
  parent.location.href="http://thephilosopherstone.ca/Alchemy/index.htm";
  break;
case "Button4":
  parent.location.href="http://thephilosopherstone.ca/3DArt/index.htm";
  break;
case "Button5":
  parent.location.href="http://thephilosopherstone.ca/Games/index.htm";
  break;
case "Button6":
  parent.location.href="http://thephilosopherstone.ca/Design/index.htm";
  break;
case "Button7":
  parent.location.href="http://thephilosopherstone.ca/Links/index.htm";
  break;  
default:
  parent.location.href="http://thephilosopherstone.ca/home.htm";
}
} 

function mouseOver(button)
{
document.getElementById(button).src ="http://thephilosopherstone.ca/Images/Icons/"+button+"a.gif";
}

function mouseOut(button)
{
document.getElementById(button).src ="http://thephilosopherstone.ca/Images/Icons/"+button+".gif";
}

