// JavaScript Document

var Marquee = function () {
	
	this.setMarquee = function () {
		
		this.mrquee  = document.createElement('marquee'),
	    this.text    = document.createTextNode("anuncios, publicidad, noticias"),
		subt         = document.getElementById('marquee_container'), 
		p            = document.getElementById('fecha');
		
		this.mrquee.id          = "marquee";
		this.mrquee.scrolldelay = "100";
		this.mrquee.align       = "middle";
		this.mrquee.style.color = "#ffcc00";
		this.mrquee.appendChild(this.text);
		//marquee.innerHTML="marquesina";
		
		//p.appendChild(marquee);
		//subt.insertBefore(this.mrquee, p);
		subt.appendChild(this.mrquee);
	};
};

