/* This code is Copyright (c) 1996 Nick Heinle and Athenia Associates, 
 * all rights reserved. In order to receive the right to license this 
 * code for use on your site the original code must be copied from the
 * Web site webreference.com/javascript/. License is granted to user to 
 * reuse this code on their own Web site if and only if this entire copyright
 * notice is included. Code written by Nick Heinle of webreference.com.
 */
 
var tagStart = '<img src="../images/';
var tagEnd = ' border=1></td>';

var imageArray = new makeArray(
	'bros.jpg" width=250 height=167',
	'ansou.jpg" width=250 height=167',
	'boats.jpg" width=250 height=161',		
	'moms.jpg" width=250 height=162'		
	);

function makeArray()
{
	this.length = makeArray.arguments.length
	for (var i = 0; i < this.length; i++)
		this[i + 1] = makeArray.arguments[i]
}

function randNum (num) 
{
	var now = new Date();
	var rand = Math.round(num * Math.cos(now.getTime()));
	if (rand < 0) 
		rand = - rand; 
	if (rand == 0) 
		rand++;
	return rand;
}