NumOfPic  = 5;
PicUrlDir = "http://www.snookerShirt.co.uk/banner/585x86/"
PicExt    = ".jpg"
PicWidth  = 585;
PicHeight = 86;
                    
PicUrl = new Array(3);
PicUrl[I++] = "Banner_585x86_Evolution.gif"
PicUrl[I++] = "Banner_585x86_PaulHunter.gif"
PicUrl[I++] = "Banner_585x86_PlayerOnTable.gif"
PicUrl[I++] = "Banner_585x86_SnookerFan.gif"
PicUrl[I++] = "Banner_585x86_SteveDavis_.gif"
PicUrl[I++] = "Banner_585x86_EatSleepSnooker.gif"

PicLink = new Array(3);
PicLink[0] = "http://www.snookershirt.co.uk";
PicLink[1] = "http://www.snookershirt.co.uk";
PicLink[2] = "http://www.snookershirt.co.uk";
PicLink[3] = "http://www.snookershirt.co.uk";
PicLink[4] = "http://www.snookershirt.co.uk";

PicTitle = new Array(3);
PicTitle[0] = "SNOOKERshirt.co.uk - Dressed to Snooker";
PicTitle[1] = "SNOOKERshirt.co.uk - Dressed to Snooker";
PicTitle[2] = "SNOOKERshirt.co.uk - Dressed to Snooker";
PicTitle[3] = "SNOOKERshirt.co.uk - Dressed to Snooker";
PicTitle[4] = "SNOOKERshirt.co.uk - Dressed to Snooker";

var d = new Date();
var s = d.getUTCSeconds()
var ThePic = s % NumOfPic;

var theStr = new String;
theStr = "";
theStr = theStr + '<a href="' + PicLink[ThePic] + '" target="_blank">';
theStr = theStr + '<img';
theStr = theStr + ' src="' + PicUrlDir + PicUrl[ThePic] + '"';
theStr = theStr + ' width="' + PicWidth + '"';
theStr = theStr + ' height="' + PicHeight + '"';
theStr = theStr + ' alt="' + PicTitle[ThePic] + '"';
theStr = theStr + ' title="' + PicTitle[ThePic] +'"';
theStr = theStr + ' border="0"';
theStr = theStr + ' >';
theStr = theStr + '</a>'

document.write(theStr);
