// JavaScript Document

var index = 0;

function setbackground()
{
	window.setTimeout( "setbackground()", 750); // 5000 milliseconds delay
		index = index + 1;
	
		if(index == 1) 
		{ 
			document.getElementById("menuknop1").style.backgroundImage = 'url(../images/cat/cat1-2.png)'; 
		} 
		else 
		{ 
			document.getElementById("menuknop1").style.backgroundImage = 'url(../images/cat/cat1-1.png)'; 
		}
		if(index == 2) 
		{ 
			document.getElementById("menuknop2").style.backgroundImage = 'url(../images/cat/cat2-2.png)'; 
		} 
		else 
		{ 
			document.getElementById("menuknop2").style.backgroundImage = 'url(../images/cat/cat2-1.png)'; 
		}
		if(index == 3) 
		{ 
			document.getElementById("menuknop3").style.backgroundImage = 'url(../images/cat/cat3-2.png)'; 
		} 
		else 
		{ 
			document.getElementById("menuknop3").style.backgroundImage = 'url(../images/cat/cat3-1.png)'; 
		}
		if(index == 4) 
		{ 
			document.getElementById("menuknop4").style.backgroundImage = 'url(../images/cat/cat4-2.png)'; 
		} 
		else 
		{ 
			document.getElementById("menuknop4").style.backgroundImage = 'url(../images/cat/cat4-1.png)'; 
		}
		if(index == 5) 
		{ 
			document.getElementById("menuknop5").style.backgroundImage = 'url(../images/cat/cat5-2.png)'; 
		} 
		else 
		{ 
			document.getElementById("menuknop5").style.backgroundImage = 'url(../images/cat/cat5-1.png)'; 
		}
		if(index == 6) 
		{ 
			document.getElementById("menuknop6").style.backgroundImage = 'url(../images/cat/cat6-2.png)'; 
		} 
		else 
		{ 
			document.getElementById("menuknop6").style.backgroundImage = 'url(../images/cat/cat6-1.png)'; 
		}
		if(index == 7) 
		{ 
			document.getElementById("menuknop7").style.backgroundImage = 'url(../images/cat/cat7-2.png)'; 
		} 
		else 
		{ 
			document.getElementById("menuknop7").style.backgroundImage = 'url(../images/cat/cat7-1.png)'; 
		}
		if(index == 8)
		{ 
			index = 0;
			document.getElementById("menuknop8").style.backgroundImage = 'url(../images/cat/cat8-2.png)'; 
		} 
		else 
		{ 
			document.getElementById("menuknop8").style.backgroundImage = 'url(../images/cat/cat8-1.png)'; 
		}
}
// -- End of JavaScript code -------------- -->


// Navigator

function ganaar(pagina)
{
	window.location.href='index.php?page=' + (pagina);	
}

// End Navigator

// Navigator

function externallink(url)
{
	window.open(url);
}

// End Navigator
