// JavaScript Document
var step=1
var whichimage=1
function slideit(){
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
whichimage=step
if (step<9)
step++
else
step=1
setTimeout("slideit()",3500)
}
slideit()
/*Organiza y Colaboran

Gobierno de Navarra
>Ayuntamiento de Pamplona
>Sodena
>Reyno Gourmet
>Reyno de Navarra
>Ciudad Agroalimentaria
>amedna
>Asociación hosteleria
>Camara de Navarra

*/
function slidelink(){

	if (whichimage==1)
	window.open('http://www.navarra.es');
	else if (whichimage==2)
	window.open('http://www.pamplona.es');
	else if (whichimage==3)
	window.open('http://www.sodena.com');
	else if (whichimage==4)
	window.open('http://www.reynogourmet.tv');
	else if (whichimage==5)
	window.open('http://www.turismo.navarra.es');	
	else if (whichimage==6)
	window.open('http://www.ciudadagroalimentaria.es/');
	else if (whichimage==7)
	window.open('http://www.amedna.com/');
	else if (whichimage==8)
	window.open('http://www.hostelerianavarra.com/');
	else if (whichimage==9)
	window.open('http://www.camaranavarra.com/');
}