<!--
        function VecImages()
        {
        n=0;
		this[n++]="pics/homepage/1.jpg";
		this[n++]="pics/homepage/2.jpg";
		this[n++]="pics/homepage/3.jpg";
		this[n++]="pics/homepage/4.jpg";
		this[n++]="pics/homepage/5.jpg";
		this[n++]="pics/homepage/6.jpg";
		this[n++]="pics/homepage/7.jpg";
		this[n++]="pics/homepage/8.jpg";
		this[n++]="pics/homepage/9.jpg";
		this[n++]="pics/homepage/10.jpg";
		this[n++]="pics/homepage/11.jpg";
		this.N=n;
        } 
        var images=new VecImages();
        src = images[Math.floor(Math.random() * images.N)] ;
        document.write("<IMG SRC="+src+" width=300 height=225>");
        //-->