	// --   set up global variables
	var avail = new Array()
	var para = new Array()
	i = n = 0
	
	// --   Available items
para[0]='<A HREF="crockett.html" border="0"><IMG src="http://i.timeinc.net/time/europe/magazine/2002/1209/mustlunch/images/crockett_front.jpg" border="0"></A>'
para[1]='<A HREF="lowe.html" border="0"><IMG src="http://i.timeinc.net/time/europe/magazine/2002/1209/mustlunch/images/lowe_front.jpg" border="0"></A>'
para[4]='<A HREF="overstratten.html" border="0"><IMG src="http://i.timeinc.net/time/europe/magazine/2002/1209/mustlunch/images/overstratten_front.jpg" border="0"></A>'
para[5]='<A HREF="owens.html" border="0"><IMG src="http://i.timeinc.net/time/europe/magazine/2002/1209/mustlunch/images/owens_front.jpg" border="0"></A>'
para[6]='<A HREF="sikkel.html" border="0"><IMG src="http://i.timeinc.net/time/europe/magazine/2002/1209/mustlunch/images/sikkel_front.jpg" border="0"></A>'
para[9]='<A HREF="wallerhunter.html" border="0"><IMG src="http://i.timeinc.net/time/europe/magazine/2002/1209/mustlunch/images/wallerhunter_front.jpg" border="0"></A>'
para[10]='<A HREF="winter.html" border="0"><IMG src="http://i.timeinc.net/time/europe/magazine/2002/1209/mustlunch/images/winter_front.jpg" border="0"></A>'
// --   generate urls
	
while ( i < 999 ) {
	// -- pick a number, any number ...
	var a = Math.round(Math.random() * 10)
	// -- Is the item a). available and b). an item at all ...
	if (avail[a] != 'no' && para[a] != null) {
			avail[a] = 'no'
			document.write (
				para[a]
			)
			// -- have we reached the display limit?
			if (n > displayTotal - 2) {
				// -- If yes, this fails out of the loop
				i = 1000
			}
			n++
		}
		i++
}