	function stopMenu(){
		var marq = document.getElementById("rollblog");
		marq.stop();
	}
	function startMenu(){
		var marq = document.getElementById("rollblog");
		marq.start();
	}
	
	//Este saca el alto del contenedor del centro (agregar id='content_center' en caso de que el
    // contenedor no tenga ese id)
	function inciarRoll(){
		alto = document.getElementById("content_center").offsetHeight-180; 
		// Este es el nombre del marquee, la etiqueta html que hace el efecto, y le ponemos alto.
		var left = document.getElementById("rollblog");
		left.style.height = alto + 'px';
		left.style.display = 'block';
	}
