<!-- Hide from old browsers

//store the quotations in arrays

images = new Array(4);
text = new Array(4);
 
images[0] = "<IMG SRC='images/themes/buschracing.jpg' border='0' width='322' height='242' alt=''>";
images[1] = "<IMG SRC='images/themes/budracing_main.jpg' border='0' width='322' height='242' alt=''>";
images[2] = "<IMG class='theme' SRC='images/themes/bud_light_party_cruise.jpg' border='0' width='322' height='242' alt=''>";
//images[2] = "<IMG class='theme' SRC='images/themes/marchmadness.jpg' border='0' width='322' height='242' alt=''>";
images[3] = "<IMG class='theme' SRC='images/themes/mlb.jpg' border='0' width='322' height='242' alt=''>";

text [0] = "Break out the Busch® for tailgate parties, the infield experience and when watching the action on T.V. Your favorite time of the year is the best time for 'The Official Beer of Saturday.'";
text [1] = "Rev up for a new era in racing as Budweiser, The Great American Lager, hits the track with Kasey Kahne and his #9 Dodge, along with long-time NHRA favorite, Brandon Bernstein";
text [2] = "Get ready to set sail with an 'invite only' Caribbean-themed launch party from Bud Light®";
//text [2] = "The madness continues as you march into your favorite hoops tournament. Score points with friends and family with the refreshing taste of Bud Light®.";
text [3] = "Get your game on and swing into spring with ice cold Budweiser® and Bud Light®.";


index = Math.floor(Math.random() * images.length);


// document.write("<DL>");

// document.write("<DT>" + "" + images[index] + "");
document.write(""+ "<div class='theme'>" + images[index] + "</div>" + "<div class='text'>" + text[index] + "</div>" + "");
// document.write("</DL>");

//done

// -->

