function pag(p)
		{
		var tab=new Array;tab[9]="hotel des iles1.jpg";tab[8]="hotel ds iles génerale.jpg";tab[7]="hotel des iles facade.jpg";tab[6]="suite02.jpg";tab[5]="hotel des iles salon.jpg";tab[4]="hotel des iles jardin.jpg";tab[3]="hotel des iles piscine.jpg";tab[2]="hotel des iles twin.jpg";tab[1]="hotel des iles piscine2.jpg";
		k=parseInt(p);
		h=6*(k-1)+1;		
		var long=tab.length-1;
		var y=h+5;if(y>long){y=long;}
		for(i=1;i<=6;i++)
		{
		if(h>long)
		{
			bloc="";
		  document.getElementById("pimg"+i).innerHTML=bloc;
		}
		else {
		   bloc='<img src="http://www.luxury-riads.com/deamiximages/'+tab[h]+'" onclick="grandirimage(\''+tab[h]+'\');" alt="'+tab[h]+'" width="165" height="90" style="margin-bottom:7px; cursor:pointer" />';
		  document.getElementById("pimg"+i).innerHTML=bloc;
		  h+=1;
		  }
		}
		}