/*** 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 bgamount=12;


	// 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] = "_self";
		this.length = len;
	}

	// Generate's the arrays.
	background_image = new makeArray(bgamount);





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


	background_image[0]="http://www.zhaust.com/images/headers/type_r_shifter.jpg";

	
	background_image[1]="http://www.zhaust.com/images/headers/maloney_flame.jpg";

	background_image[2]="http://www.zhaust.com/images/headers/model1.jpg";

	background_image[3]="http://www.zhaust.com/images/headers/bourne_rim.jpg";

	background_image[4]="http://www.zhaust.com/images/headers/246breasts.jpg";

	background_image[5]="http://www.zhaust.com/images/headers/m3_rim.jpg";

background_image[6]="http://www.zhaust.com/images/headers/scantying.jpg";


background_image[7]="http://www.zhaust.com/images/headers/slamgirls.jpg";


background_image[8]="http://www.zhaust.com/images/headers/vaucluse.jpg";


background_image[9]="http://www.zhaust.com/images/headers/ullyett.jpg";


background_image[10]="http://www.zhaust.com/images/headers/morley_jump.jpg";


background_image[11]="http://www.zhaust.com/images/headers/biggv8.jpg";
	
	// 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 background_selection=rand(bgamount);

