function selecciona(s){
seleccionado=s;
var menu=new Array("inicio","novedades","videos","noticias","artistas","recopilatorios","tienda","movil","goodies")
var urls=new Array("index","novedades","videos","noticias","artistas","recop","shop","movil")
for(m=0;m<menu.length;m++){
 
$(menu[m]).setStyle("cursor","pointer");
$(menu[m]).nombre=menu[m]
$(menu[m]).url=urls[m]
$(menu[m]).addEvent("mouseover",function(){ this.src="images/skin/menu/b"+this.nombre+"2.gif";})
$(menu[m]).addEvent("mouseout",function(){ this.src="images/skin/menu/b"+this.nombre+".gif";})
 $(menu[m]).addEvent("click",function(){ document.location=this.url+".php"})
 
}
$(menu[seleccionado]).src="images/skin/menu/b"+menu[seleccionado]+"2.gif"
 $(menu[seleccionado]).removeEvents("mouseover",function(){ this.src="images/skin/menu/b"+this.nombre+"2.gif";});
  $(menu[seleccionado]).removeEvents("click",function(){ document.location=this.url+".php"});
   $(menu[seleccionado]).removeEvents("mouseout",function(){ this.src="images/skin/menu/b"+this.nombre+".gif";});
  // alert($(menu[seleccionado]))
 }