<!--
/*** Feel free to use this script, just leave these comment lines. ***/
/***         Goetz's Banner Script copyright 1998 Lawrence Goetz   ***/
/***         goetz@lawrencegoetz.com http://www.lawrencegoetz.com/ ***/

	// Indicate how many banner ads there are.
	var amount=1;


	// Array Function.
	function makeArray(len) {
		for (var i = 0; i < len; i++) 
			this[i] = null;
		this.length = len;
	}

	// Array Function for target in frames. 
	// You can adjust the default here if you like.
	// The default is _self.
	function makeTargetArray(len) {
		for (var i = 0; i < len; i++) 
			this[i] = "website";
		this.length = len;
	}

	// Generate's the arrays.
	image = new makeArray(amount);
	link = new makeArray(amount);
	target = new makeTargetArray(amount);
	info = new makeArray(amount);

	// Place your banner information here. Start at index number 0.

	image[0]="/banners/fairgrounds_banner2.gif";
	link[0]="../JumpPages/z-fairgrounds-banner.html";
	info[0]="Nevada County Fairgrounds";	
	
	// Randomly pick a banner to display.
	function rand(n) {
		seed = (0x015a4e35 * seed) % 0x7fffffff;
		return (seed >> 16) % n;
	}
	        
	var now = new Date();
	var seed = now.getTime() % 0xffffffff;
	var position=rand(amount);
// -->
