		/* First, change the "number_of_sponsors" variable
		   to the actual number of sponsor .gifs you plan to
		   load. */
		   number_of_sponsors=5;
		
		var sctr=0;
		var halt=0;
		var isn=new Array();
		for (i=0;i<number_of_sponsors;i++){
		 isn[i]=new Image();
		}
		
		/* The sponsor .gif names are loaded into the isn[x]
		   sponsor images array.  You may load any number of
		   sponsor images (.gif or .jpg or both) into this
		   array. They must all be the same size, however.
		   Substitute your own .gif filenames for the ones
		   shown here. Note that the first .gif must appear
		   in the isn[0] array element. */
		isn[0].src=dir+"images/banner_foosbars_beer&table.jpg";
		isn[1].src=dir+"images/banner_foosmovie.gif";
		isn[2].src=dir+"images/banner_foosbars_tshirt.jpg";
		isn[3].src=dir+"images/banner_foosmovie.gif";
		isn[4].src=dir+"images/banner_foosbars_ght.jpg";
		
		/* Finally, replace the URL's below with those of
		   your sponsors IN THE SAME ORDER. */
		var durl=new Array();
		durl[0]="http://www.foosbars.com";
		durl[1]="http://www.foosmovie.com";
		durl[2]="http://www.foosbars.com/foosball_t_shirt_foosbars.html";
		durl[3]="http://www.foosmovie.com";
		durl[4]="http://www.foosbars.com";
		
		/* This script is set to rotate every 10 seconds.
		   (5000=5 seconds, so 30000 would equal 30, etc)
		   You should change the number in the setTimeout()
		   call below for the number of seconds you wish. */
		function rotateIt(){
		 if (halt!=1){
		  sctr++;
		  if (sctr>number_of_sponsors-1){
		   sctr=0;
		   }
		  document.sponsor.src=isn[sctr].src;
		  setTimeout("rotateIt()",5000);
		  }
		 }
		
		/* This code will work just fine with or without
		   frames.  However, if you are in frames and wish
		   to replicate the TARGET="_top" call to remove
		   frames, change the location.href call to:
		    parent.location.href=durl[sctr];
		   below. */

		 /* To have urls open in a new window,
		    replace "location.href=durl[sctr];"
			with the following two lines of code:

		 		//new_win=window.open(); 
		 		//new_win.location.href=durl[sctr]; */

		function doIt(){
		 halt=0;
		 //location.href=durl[sctr];  // activate for banner click to open in same browser window
		 new_win=window.open(); 	  		// activate for banner click to open new browser window
 		 new_win.location.href=durl[sctr];	// activate for banner click to open new browser window
		 }
		
		function dispIt(){
		 parent.window.status=durl[sctr];
		 }

// End of banner.js file




// <HEAD> The following code goes into the head of the HTML document:
	/*
	<script language="javascript" src="banner.js"></script>
	*/

// <BODY_1> The following code goes into HTML document where you want your banner displayed:
	/*
	<!-- Banner Ad Table Start -->

		<div align="center">
		<table border="0" cellspacing="0" cellpadding="0">
		<tr>
		<td><a href="mailto:antmandesign.com" onClick="doIt();return false" onMouseover="dispIt();return true;"><img src="../images/banner01.jpg" name="sponsor" border="0" width="468" height="60"></a></td>
		</tr>
		</table>
		</div>

		<!-- this script and more free from a1javascripts.com -->
	<!-- Banner Ad Table End -->
	*/

// <BODY_2> The following code goes into HTML document just before the closing </body> tag:
	/* 
	<!-- NOTE: keep at bottom of page -->
		<script language="javascript">
		<!-- 
			sctr=0;
			rotateIt();
		// -->
		</script>
	<!-- NOTE: keep at bottom of page -->		 
	*/	 