// ==============================================// Copyright 2003 by jsCode.com// Source: jsCode.com// Author: etLux// Free for all; but please leave in the header.// ==============================================// Set up the image files to be used.var theImages = new Array() // do not change this// To add more image files, continue with the// pattern below, adding to the array. Rememeber// to increment the theImages[x] index!theImages[0] = '<a href="http://www.sephora.com/browse/brand_hierarchy.jhtml?brandId=Kat+Von+D&cm_mmc=other-_-Advertising%20-_-20080930-_-Lucky%20KVD%20banner%20link" target="_blank"><img src="images/banner_1.jpg" width="347" height="77" alt="Kat Von D for Sephora" /></a>'theImages[1] = '<a href="http://www.sephora.com/?cm_mmc=other-_-Advertising%20-_-20080930-_-Lucky%20free%20ship%20banner%20link" target="_blank"><img src="images/banner_2.jpg" width="347" height="77" alt="FREE SHIPPING OVER $50" /></a>'// ======================================// do not change anything below this line// ======================================var p = theImages.length;var whichImage = Math.round(Math.random()*(p-1));//alert(whichImage);function random_banner(){document.write(theImages[whichImage]);}