// 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.
	  //this is the 4th box (before 2)
	  //change this absolute path when going live
       
        images[0] = '<a href="/link_bumper.php?xName=OnGuard%20Online&amp;xURL=http://www.onguardonline.gov"><img src="/images/h_e4n.gif" width="152" height="82" border="0"></a>';
		images[1] = '<a href="/pages/services/alert.html"><img src="/images/h_e5nal.jpg" width="152" height="82" border="0"></a>';
		
		//the next one is for the enterprise car sales. 
		//  images[3] = '<a href="http://www.enterprisecarsales.com/carsales/deeplinkmap.do?bid=009&cust=CUE5415&cur=WeststarCU" target="_blank"><img src="/images/h_entrpr1.gif" width="152" height="82" border="0"></a>'; 
		
    
      //images without links
        //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]);
