    // JavaScript to interpolate random images into a page.
    var ic = 35;     // Number of alternative images
    var xoxo = new Array(ic);  // Array to hold filenames
        
xoxo[0] = "http://www.baltimore-sailing-club.com/random_images/image_one.jpg";
xoxo[1] = "http://www.baltimore-sailing-club.com/random_images/image_two.jpg";
xoxo[2] = "http://www.baltimore-sailing-club.com/random_images/image_three.jpg";
xoxo[3] = "http://www.baltimore-sailing-club.com/random_images/image_four.jpg";
xoxo[4] = "http://www.baltimore-sailing-club.com/random_images/image_five.jpg";
xoxo[5] = "http://www.baltimore-sailing-club.com/random_images/image_six.jpg";
xoxo[6] = "http://www.baltimore-sailing-club.com/random_images/image_seven.jpg";
xoxo[7] = "http://www.baltimore-sailing-club.com/random_images/image_eight.jpg";
xoxo[8] = "http://www.baltimore-sailing-club.com/random_images/image_nine.jpg";
xoxo[9] = "http://www.baltimore-sailing-club.com/random_images/image_ten.jpg";
xoxo[10] = "http://www.baltimore-sailing-club.com/random_images/image_eleven.jpg";
xoxo[11] = "http://www.baltimore-sailing-club.com/random_images/image_twelve.jpg";
xoxo[12] = "http://www.baltimore-sailing-club.com/random_images/image_thirteen.jpg";
xoxo[13] = "http://www.baltimore-sailing-club.com/random_images/image_fourteen.jpg";
xoxo[14] = "http://www.baltimore-sailing-club.com/random_images/image_fifteen.jpg";
xoxo[15] = "http://www.baltimore-sailing-club.com/random_images/image_sixteen.jpg";
xoxo[15] = "http://www.baltimore-sailing-club.com/random_images/image_seventeen.jpg";
xoxo[16] = "http://www.baltimore-sailing-club.com/random_images/image_eighteen.jpg";
xoxo[17] = "http://www.baltimore-sailing-club.com/random_images/image_nineteen.jpg";
xoxo[18] = "http://www.baltimore-sailing-club.com/random_images/image_twenty.jpg";
xoxo[19] = "http://www.baltimore-sailing-club.com/random_images/image_twenty_one.jpg";
xoxo[20] = "http://www.baltimore-sailing-club.com/random_images/image_twenty_two.jpg";
xoxo[21] = "http://www.baltimore-sailing-club.com/random_images/image_twenty_three.jpg";
xoxo[22] = "http://www.baltimore-sailing-club.com/random_images/image_twenty_four.jpg";
xoxo[23] = "http://www.baltimore-sailing-club.com/random_images/image_twenty_five.jpg";
xoxo[24] = "http://www.baltimore-sailing-club.com/random_images/image_twenty_six.jpg";
xoxo[25] = "http://www.baltimore-sailing-club.com/random_images/image_twenty_seven.jpg";
xoxo[26] = "http://www.baltimore-sailing-club.com/random_images/image_twenty_eight.jpg";
xoxo[27] = "http://www.baltimore-sailing-club.com/random_images/image_twenty_nine.jpg";
xoxo[28] = "http://www.baltimore-sailing-club.com/random_images/image_thirty.jpg";
xoxo[29] = "http://www.baltimore-sailing-club.com/random_images/image_thirty_one.jpg";
xoxo[30] = "http://www.baltimore-sailing-club.com/random_images/image_thirty_two.jpg";
xoxo[31] = "http://www.baltimore-sailing-club.com/random_images/image_thirty_three.jpg";
xoxo[32] = "http://www.baltimore-sailing-club.com/random_images/image_thirty_four.jpg";
xoxo[33] = "http://www.baltimore-sailing-club.com/random_images/image_thirty_five.jpg";
xoxo[34] = "http://www.baltimore-sailing-club.com/random_images/image_thirty_six.jpg";



function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
// Write out an IMG tag, using a randomly-chosen image name.
var choice = pickRandom(ic);
