// JavaScript Document
        images = new Array();
      //images with links. You can add an image with no links. see note below.Remember that the whole link has are only single quotes.
	  //this is the 2nd box  (before 3)
	  //change this absolute path when going live
        images[0] = '<a href="/pages/loans/auto.html"><img src="/images/h_e2n.jpg" width="152" height="81" border="0" ></a>';
		//the following item is ONLINE BILL PAY Don't delete it. Convert it to "comment" when not used. change only the href and then update the name of the image.	When not used also change the item number for the next image to: "image[1]"
		
		//images[1] = '<a href="https://secure.orcc.com/promo/2008Q4/freesplash.html" target="_blank"><img src="/images/pr_vac.gif" width="152" height="81" border="0" ></a>';
		
		// images[1] = '<a href="http://' + location.hostname + '/pages/loans/promo.html"><img src="/images/pr_pow.gif" border="0"></a>';
		 
		 
		 
        images[1] = '<a href="http://www.weststar.org/link_bumper.php?xName=Members%20Financial%20Services&xURL=http://members.cunamutual.com/H2/ResourceCenter.aspx"><img src="/images/h_e6.jpg" width="152" height="81" 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]);
