	// Indicate how many banner ads there are.
	var amount=4;

	// 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] = "_blank";
		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/voyeurweb.gif";
	link[0]="http://links.voyeurweb.com/rankem.cgi?id=kwflash";
	info[0]="http://www.voyeurweb.com";
	
	image[1]="banners/cff4.jpg";
	link[1]="http://signups.triplexcash.com/hit.php?w=100433&s=2&p=2";
	info[1]="http://www.collegefuckfest.com";
	
	image[2]="banners/webwatcher.gif";
	link[2]="http://www.watchersweb.com/cgi-bin/arp/rankem.cgi?id=kwFlash";
	info[2]="http://www.watchersweb.com";
	
	image[3]="banners/nudeinpublic.jpg";
	link[3]="http://www.nude-in-public.com/cgi-bin/MSBill/index.cgi?ID=3736386";
	info[3]="http://www.nude-in-public.com";
	

	
	// 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);
	

