<!--
if(navigator.appName == 'Microsoft Internet Explorer'){
var speed=2
}else{
var speed=10
}

function moveleft(tamano,nom_capa){

	var objeto=document.getElementById(nom_capa);
	
	
	if (window.moveupvar) clearTimeout(moveupvar)
	if(parseInt(objeto.style.left) <('-' + tamano)){
		objeto.style.left=400+"px";
	}

objeto.style.left=parseInt(objeto.style.left)-speed+"px"

movedownvar=setTimeout("moveleft("+ tamano +",'"+ nom_capa +"')",1)
}//fin moveleft

function moveright(tamano,nom_capa){
	
	var objeto=document.getElementById(nom_capa);
	
	if (window.movedownvar) clearTimeout(movedownvar)

	if(parseInt(objeto.style.left) >400){
		objeto.style.left='-'+tamano+"px";	
	}

objeto.style.left=parseInt(objeto.style.left)+speed+"px"

moveupvar=setTimeout("moveright("+ tamano +",'"+ nom_capa +"')",1)
}//fin moveright

function stopscroll(){
	if (window.moveupvar) clearTimeout(moveupvar)
	if (window.movedownvar) clearTimeout(movedownvar)
}//fin stopscroll
	function izq(){}
	function dch(){}
//-->