var TextoParpadeo = Class.create
({
	Elemento: null,
	FuncionDesvanecer: null,
	FuncionMostrar: null,

	initialize: function (Elemento)
	{
		this.Elemento = document.getElementById (Elemento);
		this.FuncionDesvanecer = this.Desvanecer.bind (this);
		this.FuncionMostrar = this.Mostrar.bind (this);
		this.Desvanecer ();
	},

	Desvanecer: function ()
	{
		new Effect.Morph (this.Elemento, {style: {color: "#f79d3c"}, duration: 0.5, fps: 100, afterFinish: this.FuncionMostrar});
	},

	Mostrar: function ()
	{
		new Effect.Morph (this.Elemento, {style: {color: "#fff"}, duration: 0.5, fps: 100, afterFinish: this.FuncionDesvanecer});
	}
});
