
 dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
 monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")

 now = new Date


// Set up the image files to be used.
var theImages = new Array() // do not change this
var theURL = new Array() // do not change this either
// To add more image files and corresponding urls, continue with the
// pattern below, adding to the array.

theImages[0] = 'bannerfunnelcake.gif'
theImages[1] = 'BANNERBROILERS.gif'
theImages[2] = 'BANNERBURNERS.gif'
theImages[3] = 'bannerpretzels.gif'
theImages[4] = 'BANNERCROWD.gif'
theImages[5] = 'BANNERHOTDOGS.gif'
theImages[6] = 'BANNERNACHOS.gif'
theImages[7] = 'bannerrefrigeration.gif'
theImages[8] = 'cottoncandybanner.gif'
theImages[9] = 'popcornbanner.gif'
theImages[10] = 'snowconebanner.gif'
theImages[11] = 'bannercorndogs.gif'
theImages[12] = 'bannerpizza.gif'
theImages[13] = 'bannerworktables.gif'

theURL[0] = '/s.nl/sc.2/category.349/.f'
theURL[1] = '/s.nl/sc.2/category.65/.f'
theURL[2] = '/s.nl/sc.2/category.162/.f'
theURL[3] = '/s.nl/sc.2/category.29/.f'
theURL[4] = '/s.nl/sc.2/category.13/.f'
theURL[5] = '/s.nl/sc.2/category.21/.f'
theURL[6] = '/s.nl/sc.2/category.25/.f'
theURL[7] = '/s.nl/sc.2/category.30/.f'
theURL[8] = '/s.nl/sc.2/category.84/.f'
theURL[9] = '/s.nl/sc.2/category.27/.f'
theURL[10] = '/s.nl/sc.2/category.34/.f'
theURL[11] = '/s.nl/sc.2/category.285/.f'
theURL[12] = '/s.nl/sc.2/category.147/.f'
theURL[13] = '/s.nl/sc.2/category.182/.f'


// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<a href="http://www.concessionstands.com'+theURL[whichImage]+'">');
document.write('<img src="https://checkout.netsuite.com/c.453157/site/images/'+theImages[whichImage]+'" border="0" vspace="5">');
document.write('</a>');
}
