function SVRandomArray() // constructor
		{	this.list = new Array();
			this.Add  = function ( v ) {        this.list[ this.list.length ] = v }
			this.Get  = function (   ) { return this.list[ this.RandIndex() ]     }
			this.Pop  = function (   )
			{	var x, v = this.list[ x = this.RandIndex() ], z = this.length;
				while ( x < z ) { this.list[ x ] = this.list[ ++x ] }
				this.list.length--;
				return v;
			}
			this.RandIndex = function ()
			{	return Math.floor( Math.random() * this.list.length );
			}
		}
        function RandomImage()
		{
			var gaImagePaths = new SVRandomArray();

			gaImagePaths.Add( 'images/image-loop/trish01.jpg' );
			gaImagePaths.Add( 'images/image-loop/trish05.jpg' );
			gaImagePaths.Add( 'images/image-loop/trish08.jpg' );

			var imgPre  = '<img src="';
			var imgPost = '" alt="Art-Fashion-Travel" width="129" height="447">';

			var gsImageTag = imgPre + gaImagePaths.Get() + imgPost;
			document.write( gsImageTag );
		}
