// JavaScript Document
        images = new Array();
      //images with links. You can add an image with no links. see note below.Remember that inside the a href tag there are only single quotes.
	  //change this absolute path when going live
	  
      //this is the 3rd box  (before 4)
        
		images[0] = '<a href="/pages/services/obill.html"><img src="/images/h_e3n.gif" width="152" height="82" border="0"></a>';
		images[1] = '<a href="http://www.weststar.org/link_bumper.php?xName=ATM%20Locator&xURL=http://www.co-opfs.org/public/locators/ATMlocator/index.cfm"><img src="/images/h_e8.gif" width="152" height="82" border="0"></a>';
		images[2] = '<a href="/pages/about/partners.html#getaway"><img src="/images/da_getaway.gif" width="152" height="82" border="0"></a>';
		images[3] = '<a href="http://www.weststar.org/link_bumper.php?xName=FakeChecks.org&xURL=http://www.FakeChecks.org"><img src="/images/r3_checkfr.gif" width="152" height="82" border="0"></a>';
		//images[0] = '<a href="/pages/rates/sav_rat.html"><img src="/images/da_415tc.gif" width="152" height="82" border="0"></a>';
    
      //rotating images without links code (note the double and single quotation marks):
        //images[0] = "<img src='images/h_e1n.jpg'>";
        //images[1] = "<img src='images/h_e1nalt.jpg'>";
		
    
        index = Math.floor(Math.random() * images.length);
        document.write(images[index]);
