// JavaScript Document

function m_over(button)
{
	button.style.backgroundPosition = "bottom";
	button.style.cursor = "pointer";
}
function m_out(button)
{
	button.style.backgroundPosition = "top";
}

function chg_site(n)
{
	var site = '';
	switch(n)
	{
		case 0:
			 document.forms.home.submit();
		break;
		case 1:
			site = 'album/sv.html';
		break;
		case 2:
			site= 'keramik/album/slide.html';
		break;
		case 3:
			site='album/bezugsquellen.html';
		break;
		case 4:
			site='eier/album/slide.html';
		break;
		case 5:
			site='album/kontakt.html';
		break;
		case 6:
			site='muffulas/album/slide.html';
		break;
	}
	if(site != '')
	{
			parent.frames[1].location.href = site;
	}
}
