/**
* @method update
* The function responsible for updating a div element starting from the page loading to the page close.
* @param {void}
* @return {void}
*/
		function update(){
			var d = document.getElementById('container');
			var def = d.childNodes[0].nodeValue;
			t = 5000;
			setTimeout(function(){
				d.childNodes[0].nodeValue = "Misa del MFC (San Jose): 19 de Febrero, 1:15PM";
				setTimeout(function(){
					d.childNodes[0].nodeValue = "Desayunos y Ventas de Afuera: 25 y 26 de Febrero (Equipo 2)";
					setTimeout(function(){
						d.childNodes[0].nodeValue = def;
						update();
					}, t);
				}, t);
			}, t);
		}

/**
* Invoking the update function through window object's onload event.
*/
	window.onload = update;
