var rand1 = 0;
var useRand = 0;
promo1 = new Array;
promo1[1] = new Image();
promo1[1].prod = "CS3 Web Bundle";
promo1[1].txt = "All you need for a state of the art website in one package.";
promo1[1].lnk = "/prod/bundle/";
promo1[1].num = "1120000001";
promo1[2] = new Image();
promo1[2].prod = "Photoshop CS3";
promo1[2].txt = "From color selecting to special effects - uncover the magic.";
promo1[2].lnk = "/prod/adobe/photoshop.asp";
promo1[2].num = "1105000015";

function swapPromo1() {
	var imgnum = promo1.length - 1;
	do{
		var randnum = Math.random();
		rand1 = Math.round((imgnum - 1) * randnum) + 1;
	} while(rand1 == useRand);
	useRand = rand1;
	document.write('<b class="ol_hdr1a">Total Training for</b><br><b class="ol_hdr1b"><i>'+ promo1[useRand].prod +'</i></b><div class="ol_hdr1c" style="width:180px;">'+ promo1[useRand].txt +'</div>')
	document.write('<a href="'+ promo1[useRand].lnk +'" class="lnk"><img src="/img/btn/x21/or_learnmore.gif" width="85" height="21" border="0" vspace="2" title="Promo 1 Learn More" alt="Learn More"></a><a href="/store/ShoppingCart.aspx?addItem='+ promo1[useRand].num +'"><img src="/img/btn/x21/bl_addcart.gif" width="85" height="21" border="0" hspace="11" vspace="2" alt="Add To Cart"></a>')
}

var rand2 = 0;
var useRand2 = 0;
promo2 = new Array;
promo2[1] = new Image();
promo2[1].prod = "Flash CS3";
promo2[1].txt = "Discover how to design fun, creative, interactive websites";
promo2[1].lnk = "/prod/adobe/flash.asp";
promo2[1].num = "1106000011";
promo2[2] = new Image();
promo2[2].prod = "Dreamweaver CS3";
promo2[2].txt = "Create Web pages, set links, insert images, and more.";
promo2[2].lnk = "/prod/adobe/dreamweaver.asp";
promo2[2].num = "1106000010";

function swapPromo2() {
	var imgnum2 = promo2.length - 1;
	do{
		var randnum2 = Math.random();
		rand2 = Math.round((imgnum2 - 1) * randnum2) + 1;
	} while(rand2 == useRand2);
	useRand2 = rand2;
	document.write('<b class="ol_hdr1a">Total Training for</b><br><b class="ol_hdr1b"><i>'+ promo2[useRand2].prod +'</i></b><div class="ol_hdr1c" style="width:180px;">'+ promo2[useRand2].txt +'</div>')
	document.write('<a href="'+ promo2[useRand2].lnk +'" class="lnk"><img src="/img/btn/x21/or_learnmore.gif" width="85" height="21" border="0" vspace="2" title="Promo 2 Learn More" alt="Learn More"></a><a href="/store/ShoppingCart.aspx?addItem='+ promo2[useRand2].num +'"><img src="/img/btn/x21/bl_addcart.gif" width="85" height="21" border="0" hspace="11" vspace="2" alt="Add To Cart"></a>')
	
	
}