Ver Mensaje Individual
  #6 (permalink)  
Antiguo 15/04/2004, 11:36
blue_laser0
 
Fecha de Ingreso: diciembre-2002
Ubicación: USA
Mensajes: 101
Antigüedad: 21 años, 4 meses
Puntos: 0
//LA CONTINUACION

Código:
for(n=0;n<menuPrin;n++){
document.getElementById('tuMen'+n).onmouseover=function(){
	if(document.getElementById('op_'+this.id.substr(5))!=null){
		clearTimeout(tiempo)
		document.getElementById('op_'+this.id.substr(5)).cierra=false
		ocultaP()
		muestra('op_'+this.id.substr(5))
		}
	else{
		clearTimeout(tiempo)
		ocultaP()
		}
	}
document.getElementById('tuMen'+n).onmouseout=function(){
if(document.getElementById('op_'+this.id.substr(5))!=null){
		document.getElementById('op_'+this.id.substr(5)).cierra=true
		tiempo =setTimeout('ocultaP()',1000)
		}
	}
}
menPrin()
}
var activo = false
window.onload=inicio
</script>
<style type="text/css">
<!--
.botones {
	font-family: Tahoma, Verdana, Arial;
	font-size: 12px;
	font-weight: bold;
	background-color: #D8D8C5;
	text-align: center;
	border: 1px solid #333333;
	margin: 2px;
	vertical-align: middle;
	color: #000000;

	
}
.botonesHover{
	font-family: Tahoma, Verdana, Arial;
	font-size: 12px;
	font-weight: bold;
	background-color: #0099CC;
	text-align: center;
	border: 1px solid #333333;
	margin: 2px;
	vertical-align: top;
	color: #FFFFFF;
}
.subMe {
	visibility: hidden;
	position: absolute;
	font-family: Tahoma, Verdana, Arial;
	font-size: 12px;
	font-weight: bold;
	background-color: #D8D8C5;
	text-align: center;
	border: 1px solid #000099;

}
.subMeP {
	font-family: Tahoma, Verdana, Arial;
	font-size: 12px;
	font-weight: bold;
	background-color: #D8D8C5;

}
.botonesP {
	font-family: Tahoma, Verdana, Arial;
	font-size: 12px;
	font-weight: bold;
	background-color: #D8D8C5;
	border: 1px solid #009900;
	margin: 2px;
	color: #000000;
	vertical-align: top;
	height: 10px;
}
.celda{
margin:0;
padding: 0;
}
.pepe{
border: 1px solid #ff0000;
position:absolute;
left:0
}
-->
</style>
</head>
<body>
<p>&nbsp;</p>
<div id="tunMenu"></div>
  <form name="form1" method="post" action="">

      <select name="select">
        <option value="aaaa">aaa</option>
        <option value="bbbb">bbbb</option>
        <option value="cccccc">cccc</option>
      </select>
    </p>
  </form>
</body>