var imagename = new Array();
imagename[0] = "croyde-breaks.jpg"
imagename[1] = "saltrock.jpg"
imagename[2] = "cams.jpg"
imagename[3] = "DFgoldcoastbutton.gif"
imagename[4] = "sims.jpg"
imagename[5] = "florist.jpg"


var imgalt = new Array()
imgalt[0] = "Croyde Breaks - Stay right near the beach"
imgalt[1] = "Visit Saltrock"
imgalt[2] = "Live Surf Cams"
imgalt[3] = "Goldcoast Oceanfest"
imgalt[4] = "Sims Designs"
imgalt[5] = "Offshore Blooms"


var linkto = new Array()
linkto[0] = "http://www.croydebreaks.co.uk"
linkto[1] = "http://www.saltrock.com"
linkto[2] = "http://www.livesurfcams.co.uk"
linkto[3] = "http://www.goldcoastoceanfest.co.uk"
linkto[4] = "http://www.stevesims.com"
linkto[5] = "http://www.offshoreblooms.co.uk"



var i = 0;
i=Math.round(Math.random()*(imagename.length-1));
document.write('  <div align="center"><a href="' + linkto[0] + '" target="_blank"><img src="http://www.croyde-bay.co.uk/Images/' + imagename[0] + '" width="125" height="70" alt="' + imgalt[0] + '" border="1" vspace="4"></div>');

var i = 1;
i=Math.round(Math.random()*(imagename.length-1));
document.write('  <div align="center"><a href="' + linkto[1] + '" target="_blank"><img src="http://www.croyde-bay.co.uk/Images/' + imagename[1] + '" width="125" height="70" alt="' + imgalt[1] + '" border="1" vspace="4"></div>');

var i = 2;
i=Math.round(Math.random()*(imagename.length-1));
document.write('  <div align="center"><a href="' + linkto[2] + '" target="_blank"><img src="http://www.croyde-bay.co.uk/Images/' + imagename[2] + '" width="125" height="70" alt="' + imgalt[2] + '" border="1" vspace="4"></div>');

var i = 3;
i=Math.round(Math.random()*(imagename.length-1));
document.write('  <div align="center"><a href="' + linkto[3] + '" target="_blank"><img src="http://www.croyde-bay.co.uk/Images/' + imagename[3] + '" width="125" height="70" alt="' + imgalt[3] + '" border="1" vspace="4"></div>');

var i = 4;
i=Math.round(Math.random()*(imagename.length-1));
document.write('  <div align="center"><a href="' + linkto[4] + '" target="_blank"><img src="http://www.croyde-bay.co.uk/Images/' + imagename[4] + '" width="125" height="70" alt="' + imgalt[4] + '" border="1" vspace="4"></div>');

var i = 5;
i=Math.round(Math.random()*(imagename.length-1));
document.write('  <div align="center"><a href="' + linkto[5] + '" target="_blank"><img src="http://www.croyde-bay.co.uk/Images/' + imagename[5] + '" width="125" height="70" alt="' + imgalt[5] + '" border="1" vspace="4"></div>');
