// JavaScript Document

function animHoroskopButton(id, mousIn)
{
	if(mousIn)
		document.getElementById(id).style.backgroundImage="url('/images/HoroskopButtonBg2.png')";
	else
		document.getElementById(id).style.backgroundImage="url('/images/HoroskopButtonBg1.png')";
}


function goToLink(id)
{
	location.href=document.getElementById(id).value;
}


