// REMOVE THE FOCUS OF THE LINKS -------------------------------------

function removeFocus ()
{
	// Remove links Focus 
	for(i=0;i<document.links.length;i++)
	{
		document.links[i].onfocus=function() {if(this.blur)this.blur()}; 
	}	
}

// SLIDESHOW FOTO FUNCTIONS   -------------------------------------
//friends gallery
Array_foto01 = new Array('','02.jpg','03.jpg','04.jpg','05.jpg','06.jpg','07.jpg','08.jpg','01.jpg');




function roll_img_foto01(cible) {
	id = foto01_id.value;
	if (cible=='plus') { id++; } else  { id--; }
	if (id > (Array_foto01.length)-1) { id = 1; }
	if (!id || id < 1) { id = Array_foto01.length-1; }
	foto01_id.value = id;
	document.foto01.src='../p/slidesho/'+Array_foto01[id];
}


function roll_img_foto02(cible) {
	id = foto02_id.value;
	if (cible=='plus') { id++; } else  { id--; }
	if (id > (Array_foto02.length)-1) { id = 1; }
	if (!id || id < 1) { id = Array_foto02.length-1; }
	foto02_id.value = id;
	document.foto02.src='../pix/foto02/'+Array_foto02[id];
}