window.addEvent('load', function()
{
  var titulines = $$('#acercade h2') 
  var listados = $$('#acercade .listas')
  var a = 0;
  listados.each(function(elemento)
		{
			var slider1 = new Fx.Slide(elemento);
			//slider1.hide();
			titulines[a].addEvent('click', function(ev)
  		    {
				new Event(ev).stop();
				slider1.toggle();
				if (this.className == "seleccionado")
					this.className = "";
				else
					{
						this.className = "seleccionado";
					}
			});
			a ++;
		});
});
