	var Swap_Gallery_Interval = 5000;
	var Swap_Gallery_Speed = 35;
	var Swap_Gallery_Index = 0;
	var Swap_Gallery_Images = new Array();
	var Swap_Gallery_Opacity;
	var next_image = 0;
	var micontadorr = 0;

function revealImage()
{

    if (Swap_Gallery_Index==6){

		Swap_Gallery_Index=1;
		next_image=1;

	}else{
	
		next_image = next_image + 1;
		Swap_Gallery_Index = Swap_Gallery_Index + 1		

	}
	
	micontadorr = micontadorr + 1;
	cambiar_home(Swap_Gallery_Index,Swap_Gallery_Index-1)
	cambiar_menus(Swap_Gallery_Index,false)
	setTimeout('revealImage()', Swap_Gallery_Interval);
}

function initImageGallery()
{	
	Swap_Gallery_Index = numero-1;
	next_image = numero;
	micontadorr=0;
	setTimeout('revealImage()', Swap_Gallery_Interval);
}

function cambiar_menus(capa, demenu){

	
	//alert('Cambiar menu. Ahora contador es: ' + contador);
	
	var crear_cadena2 = "";
	crear_cadena2 = crear_cadena2 + "<ul>"

	for (x=1;x<=6;x++){
			if( (x==6) && (6==capa) ){					
				crear_cadena2 = crear_cadena2 + "<li class='ultimo'><a href='#page' id='opcion"+ contador +"' onClick='cambiar_home(" + x + ", "+ (x-1) +");cambiar_menus(" + x + ",true)' class='tocado' alt='"+Swap_Gallery[contador-1] [3]+"' title='"+Swap_Gallery[contador-1] [3]+"'></a></li>";						
				break;
			}							
	
			if(x==6){
				crear_cadena2 = crear_cadena2 + "<li class='ultimo'><a href='#page' id='opcion"+ contador +"' onClick='cambiar_home(" + x + ", "+ (x-1) +");cambiar_menus(" + x + ",true)' alt='"+Swap_Gallery[contador-1] [3]+"' title='"+Swap_Gallery[contador-1] [3]+"'></a></li></ul>";
				break;
			}		

			if (x==capa){											
				crear_cadena2 = crear_cadena2 + "<li><a href='#page' id='opcion"+ x +"' onClick='cambiar_home(" + x + ", "+ (x-1) +");cambiar_menus(" + x + ",true)' class='tocado' alt='"+Swap_Gallery[x-1] [3]+"' title='"+Swap_Gallery[x-1] [3]+"'></a></li>";
			}else{
				crear_cadena2 = crear_cadena2 + "<li><a href='#page' id='opcion"+ x +"' onClick='cambiar_home(" + x + ", "+ (x-1) +");cambiar_menus(" + x + ",true)' alt='"+Swap_Gallery[x-1] [3]+"' title='"+Swap_Gallery[x-1] [3]+"'></a></li>";
			}	

	}
	document.getElementById("opciones_principal").innerHTML = crear_cadena2;
	if (demenu==true){
		Swap_Gallery_Index = capa-1;
		next_image = capa;	
	}	
	
}