var theImages = new Array()

//Random-loading images
theImages[0] = '/images/cta_wickedpackages.gif' // replace with names of images
theImages[1] = '/images/cta_towers.gif' // replace with names of images
theImages[2] = '/images/cta_boardspecial.gif' // replace with names of images


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(){
if(whichImage==0){
document.write('<a href ="/wake_package_deals.html" title ="Wicked Package Deals"><img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==1){
document.write('<a href ="/_catalog_55309/Towers.html" title ="Towers Racks & Speakers"><img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==2){
document.write('<a href ="/wake_package_deals.html" title ="Board and Boot Bundles Available Today"><img src="'+theImages[whichImage]+'" border=0></a>');
}

}

var theImages2 = new Array()

//Random-loading images
theImages2[0] = '/images/cta_womens.gif' // replace with names of images
theImages2[1] = '/images/cta_towables.gif' // replace with names of images
theImages2[2] = '/images/cta_tailormade.gif' // replace with names of images

var j = 0
var p = theImages2.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages2[i]
}
var whichImage2 = Math.round(Math.random()*(p-1));

function showImage2(){
if(whichImage2==0){
document.write('<a href ="/wake_package_deals.html" title ="Womens Packages Available Now"><img src="'+theImages2[whichImage2]+'" border=0></a>');
}
else if(whichImage2==1){
document.write('<a href ="/wake_package_deals.html" title ="Huge Range of Towables for your Boat"><img src="'+theImages2[whichImage2]+'" border=0></a>');
}
else if(whichImage2==2){
document.write('<a href ="/wake_package_deals.html" title ="Tailormade Packages for your Wake Boat"><img src="'+theImages2[whichImage2]+'" border=0></a>');
}


}


