// JavaScript Document

function imgcambiar(selecc)
{	
	var newimagen;
	switch (selecc)
		{
		case 1: newimagen = "img/equipo/gafas.jpg";
				break;
		case 2: newimagen = "img/equipo/casco.jpg";
				break;
		case 3: newimagen = "img/equipo/rodilleras.jpg";
				break;
		case 4: newimagen = "img/equipo/guantes.jpg";
				break;
		case 5: newimagen = "img/equipo/uniforme.jpg";
				break;
		case 6: newimagen = "img/equipo/gorra.jpg";
				break;
		case 7: newimagen = "img/equipo/m-65.jpg";
				break;
		case 8: newimagen = "img/equipo/botas.jpg";
				break;
		case 9: newimagen = "img/equipo/aeg.jpg";
				break;
		case 10: newimagen = "img/equipo/pistola.jpg";
				break;
		case 11: newimagen = "img/equipo/cargador.jpg";
				break;
		case 12: newimagen = "img/equipo/municion.jpg";
				break;
		case 13: newimagen = "img/equipo/chaleco.jpg";
				break;
		case 14: newimagen = "img/equipo/brujula.jpg";
				break;
		case 15: newimagen = "img/equipo/camelback.jpg";
				break;
		case 16: newimagen = "img/equipo/mochila.jpg";
				break;
		case 17: newimagen = "img/equipo/funda.jpg";
				break;
		case 18: newimagen = "img/equipo/linterna.jpg";
				break;
		case 19: newimagen = "img/equipo/radio.jpg";
				
		}
  imagen = document.getElementById('imgchange');
  imagen.src = newimagen;
}

function activacapa(sel)
	{
	var capas = ["cp1", "cp2", "cp3", "cp4"];

	for (var i = 0; i < capas.length; i ++) document.getElementById(capas[i]).style.display = "none";
	document.getElementById(capas[sel-1]).style.display = "block";
}	

function activacapa2(sel)
	{
	var capas = ["capa1", "capa2", "capa3", "capa4"];

	for (var i = 0; i < capas.length; i ++) document.getElementById(capas[i]).style.display = "none";
	document.getElementById(capas[sel-1]).style.display = "block";
}

// NOTICIAS al iniciar la pagina - funciones
function uNoticia()   
	{ 
	var crono = 0;
	
	do {++crono;} 
	while (crono < 15000000);
	crono = 0; 
	do {++crono;} 
	while (crono < 1900000);
	document.getElementById('IniNoticias').style.visibility = 'visible';
	}

function hideMe(){
//	document.IniNoticias.visibility='hidden';
	document.getElementById('IniNoticias').style.visibility="hidden";
}


/* Para el control del SCROLL*/
function regenerate()
	{
	window.location.reload()
	}

function regenerate2()
	{
	if (document.layers)
		{
		setTimeout("window.onresize=regenerate",330);
		intializemarquee()
		}
	}

function intializemarquee()
	{
	document.cmarquee01.document.cmarquee02.document.write(marqueecontents);
	document.cmarquee01.document.cmarquee02.document.close();
	thelength= document.cmarquee01.document.cmarquee02.document.height;
	scrollit()
	}

function scrollit()
	{
	if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1))
		{
		document.cmarquee01.document.cmarquee02.top-=speed;
		setTimeout("scrollit()",100);
		}
	else{
		document.cmarquee01.document.cmarquee02.top=marqueeheight;
		scrollit();
		}
	}


