// PRELOAD DE IMAGENES //

var status = 1;
var toc = new Array();
var nn4 = document.layers ? true:false;

function item(off, over){
	this.off = new Image(); this.off.src = off;
	this.over = new Image(); this.over.src = over;
}
function cache(id, off, over){
	item[id] = new item(off, over);
	toc[toc.length] = id;
}
function over(id){
	document[id].src = item[id].over.src;
}
function out(id){
	document[id].src = item[id].off.src;
}

//OVER,OUT CON LAYERS

function overid(id,Lyr){
	if (nn4){
		document.layers[Lyr].document[id].src = item[id].over.src;
	} else {
		document[id].src = item[id].over.src;
	}
}

function outid(id,Lyr){
	if (nn4){
		document.layers[Lyr].document[id].src = item[id].off.src;
	} else {
		document[id].src = item[id].off.src;
	}
}

// FIN DE PRELOAD DE IMAGENES //

function cambio(src,img){
	document[src].src = img;	
}


// LOAD DE LAYER //


// VERIFICADOR
var dom = document.getElementById ? true:false;
var nn4 = document.layers ? true:false;
var ie4 = document.all ? true:false;

function load_home(){

	if(ie4){
		document.all['subcuerpo3'].style.visibility="visible";
	}
	else if(nn4){
		document.layers['subcuerpo3'].visibility="visible";
	}
	else if(dom){
		document.getElementById('subcuerpo3').style.visibility="visible";
	}
}

function load(){

	if(ie4){
		document.all['subcuerpo2'].style.visibility="visible";
	}
	else if(nn4){
		document.layers['subcuerpo2'].visibility="visible";
	}
	else if(dom){
		document.getElementById('subcuerpo2').style.visibility="visible";
	}
}

function flashhome()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="760" height="480">');
	document.write('                              <param name="movie" value="fla/home.swf">');
	document.write('                              <param name="quality" value="high">');
	document.write('                              <param name="wmode" value="transparent"/>');
	document.write('                              <embed wmode="transparent" src="fla/home.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="760" height="480"></embed>');
	document.write('                          </object>');
}	

function flashhome2()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="760" height="480">');
	document.write('                              <param name="movie" value="fla/home_2.swf">');
	document.write('                              <param name="quality" value="high">');
	document.write('                              <param name="wmode" value="transparent"/>');
	document.write('                              <embed wmode="transparent" src="fla/home_2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="760" height="480"></embed>');
	document.write('                          </object>');
}	
