	function VecImagenes()
	{
		n=0;
		this[n++]="Depresion";
		this[n++]="Trastorno_atencion";
		this[n++]="Adicciones";
		this[n++]="Psicoterapia";
		this[n++]="Fracaso_escolar";
		this[n++]="Bulimia";
		this[n++]="Hablar_en_publico";
		this[n++]="Fobia";
		this[n++]="Terapia_de_pareja";
		this.N=n;
	}
	
	var Imagenes=new VecImagenes();
	src= Imagenes[ Math.floor(Math.random() * Imagenes.N) ] ;
	
	document.write('<a href="http://www.ce-ce.es"><img src="images/bienvenida/' + src + '.jpg" alt="' + src + '"/></a>');
