// JavaScript Document
/*
function enfoca(idMenu){
		for(var i= 1 ; i <= 5 ; i++){
			document.getElementById('menu'+i).src =
			}
	}*/
	
function muestraVideo(video){
	document.getElementById('ifr_videos').src = "muestra_video.php?video="+video;	
	}
	
function seleccionaTitulo(cancion){
	document.getElementById(cancion).className = 'tit_selected';
	document.getElementById(document.getElementById('titulo_seleccionado').value).className = '';
	document.getElementById('titulo_seleccionado').value = cancion;	
}

function ponBackGround(){	
	document.getElementById(document.getElementById('titulo_seleccionado').value).className = 'tit_selected';
	}
	
