		$(document).ready(function(){
			$("a#sup1").mouseover(function() {
			   $("#texto").html("Descargas");
			});
			$("a#sup2").mouseover(function() {
			   $("#texto").html("Galeria");
			});
			$("a#sup3").mouseover(function() {
			   $("#texto").html("Enlaces");
			});
			$("a#sup4").mouseover(function() {
			   $("#texto").html("Contacto");
			});
			$("a#sup5").mouseover(function() {
			   $("#texto").html("Mapa Web");
			});
			$("a#sup1,a#sup2,a#sup3,a#sup4,a#sup5").mouseout(function() {
			   $("#texto").html("");
			});
		 });
