//Adapted from:
//Countdown script by Mike Thompson
//http://www.members.tripod.com/webdesign123now/
//Based on script by Website Abstraction (http://wsabstract.com)
//Last updated: June 12, 2006

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="/simpledesktops/images/storepromos/SimpleDesktopsStore80.gif"
myimages[2]="/simpledesktops/images/storepromos/KoiWavesStore80.gif"
myimages[3]="/simpledesktops/images/storepromos/LittleBlackCatStore80.gif"
myimages[4]="/simpledesktops/images/storepromos/GirlsDayStore80.gif"
myimages[5]="/simpledesktops/images/storepromos/HotCocoaMug80.gif"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.thewebupdater.com/simpledesktops/store/"
imagelinks[2]="http://www.cafepress.com/KoiWaves/"
imagelinks[3]="http://www.cafepress.com/LittleBlackCat/"
imagelinks[4]="http://www.cafepress.com/girlsday/"
imagelinks[5]="http://www.thewebupdater.com/simpledesktops/store/featured.html"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+' target="_blank"><img src="'+myimages[ry]+'" border="0" width="200" height="80" alt=" "></a>')
}
random_imglink()

