// JavaScript Document


function ampliacion(el)
{
	window.open(el, 'ampliacion', 'location=no,menubar=no,status=no,toolbar=no,resizable=no,height=600,width=680,left='+(screen.width-600)/2+',top='+(screen.height-650)/2);
	return false;
}


window.onload = function()
{
// --------------  ROTACION DE LAS IMAGENES DE LA PARTE SUPERIOR 


	//Aspecto aleatorio
	var colum2 = document.getElementById('header');
	if(colum2)
	{
		var rand = Math.floor( Math.random ( ) * 3 + 1 );
		colum2.style.backgroundImage = 'url(../images/background-header-'+rand+'.jpg)';
	}




	var img = document.getElementById('Imagenes_Publicidad_Portada');
	
	var img_big = document.getElementById('Imagenes_franquicias1_Imagen_Portada_1');
	

	
	
	//Obtener ul
	
	
	
	//Hijos del ul, los li
	var child = new Array();
	var imgs = new Array();
	child = img.childNodes;
	
	
	for(i=0; i < child.length; i++)
	{
		imgs[i] = child[i].id;
	}	
		
	//Imagen activa
	var contador_ul = document.getElementById('img_activa_contador');
	var child_contador = new Array();
	
	child_contador = contador_ul.childNodes;
		
	var img_activa = child_contador[0].id;
	

	
	
	
	setTimeout(function au()
		{
			setInterval( function rotar()
			{
				img_activa++;
				if(img_activa >= imgs.length)
				{
					img_activa = 0;
				}
				img_big.src = imgs[img_activa];
				
				
				
			}, 4000);
		}, 1500);
	}
	
	



