var bool = 1;
function meny1(id)
{
	document.getElementById(id).style.backgroundImage = 'url(bilder/meny1_2.jpg)'
}
function meny1_out(id)
{
	document.getElementById(id).style.backgroundImage = 'url(bilder/meny1.jpg)'
}

function meny2(id)
{
	document.getElementById(id).style.backgroundImage = 'url(bilder/meny2_2.jpg)'
}
function meny2_out(id)
{
	document.getElementById(id).style.backgroundImage = 'url(bilder/meny2.jpg)'
}

function link(sida)
{
	self.location=sida;
}

				

				function blink()
				{
					if(bool == 1)
					{
						document.getElementById("gott").style.visibility = 'hidden';
						bool = 0;
					}
					else
					{
						document.getElementById("gott").style.visibility = 'visible';
						bool = 1;
					}
						
					setTimeout("blink()",500);
				}


