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


	// 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.
	bottom_row_image = new makeArray(bottom_rowamount);
	bottom_row_link = new makeArray(bottom_rowamount);
	bottom_row_target = new makeTargetArray(bottom_rowamount);
	bottom_row_info = new makeArray(bottom_rowamount);



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

	bottom_row_image[0]="images/ads/row/dell_reseller.gif";
	bottom_row_link[0]="http://www.gen-sol.com";
	bottom_row_info[0]="Official Dell Resellers";


	bottom_row_image[1]="http://www.zhaust.com/images/ads/row/poverh-banner.gif";
	bottom_row_link[1]="http://www.poverh.com";
	bottom_row_info[1]="Party Over Here Entertainment";


	bottom_row_image[2]="images/ads/row/gensol_quality.gif";
	bottom_row_link[2]="http://www.gen-sol.com";
	bottom_row_info[2]="Quality Computer Hardware";


	bottom_row_image[3]="http://www.zhaust.com/images/ads/row/ffe_banner.jpg";
	bottom_row_link[3]="http://www.fastandfuriouseast.com";
	bottom_row_info[3]="Fast and furious East";


	bottom_row_image[4]="http://www.zhaust.com/images/ads/row/TotallyAutomotive.jpg";
	bottom_row_link[4]="http://www.totallyautomotive.com";
	bottom_row_info[4]="Totally Automotive";


bottom_row_image[5]="http://www.zhaust.com/images/ads/row/caribbean_motorsports_banner.gif";
	bottom_row_link[5]="http://www.caribbeanmotorsports.com";
	bottom_row_info[5]="Caribbean Motorsports";


bottom_row_image[6]="http://www.zhaust.com/images/ads/row/bdos_forum.gif";
	bottom_row_link[6]="http://www.barbadosforum.com";
	bottom_row_info[6]="Barbados Forum";
	
	// 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 row_position_bottom=rand(bottom_rowamount);
	
