/* 	
	Purpose:	This function displays the random header banners on the site.
	Created by: Shawn Roser
	Date: 		3/4/2004
*/

function GetRandomImage() {

	var sString;

	var nRandNumber = Math.floor(Math.random()*5);
		
	var Segment1 = new Array (
		'/images/headbanners/1.gif',
		'/images/headbanners/2.gif',
		'/images/headbanners/8.gif',
		'/images/headbanners/23.gif',
		'/images/headbanners/25.gif'
		);

	var SegmentHref1 = new Array(
			"http://www.optionsxpress.com/welcome/tour/trade/wireless.aspx?s=hdr_wow",
			"http://www.optionsxpress.com/welcome/tour/quotes/dragon.aspx?s=hdr_dragon",
			"http://www.optionsxpress.com/welcome/tour/educate/xguides.aspx?s=hdr_xguides",
			"http://www.optionsxpress.com/welcome/tour/educate/webinars.aspx?s=hdr_webex",
			"http://www.optionsxpress.com/welcome/tour/quotes/toolbar.aspx?s=hdr_tlbr"
			);

	sString='<a href="' + SegmentHref1[nRandNumber] + '" onfocus="this.blur();" target="_blank"><img src="' + Segment1[nRandNumber] + '" alt="Click Here"></a>';	

	document.write (sString);
}