
	<!--

	function StringArray (n) 
	{
	  this.length = n;
	  for (var i =1; i <= n; i++) 
	  {
		this[i] = ' '
	  }
	}
		image = new StringArray(8)
	image[0] = 'free-uk-std-postage-01.jpg'
image[1] = 'perfect pencil.jpg'
image[2] = 'tombow.jpg'
image[3] = 'stdupont.jpg'
image[4] = 'elco.jpg'
image[5] = 'karl.jpg'
image[6] = 'caran.jpg'
image[7] = 'mouse.jpg'

	//create random number between 0 and N-1 where N is equal to number of elements in array
	var ry=Math.floor(Math.random()*image.length);

	//output image
	document.write("<img src='/gfx/header-rdm-images/" +image[ry]+ "' alt='product photograph' title='Stone Marketing Gifts and Writing Instruments' />")
	//-->
	
