rimages = [
 "bumper_sticker_150x150_Front.jpg",
 "infant_150x150_Front_Color-White.jpg",
 "kids-light_150x150_Front_Color-White.jpg",
 "magnet_150x150_Front.jpg",
 "mousepad_150x150_Front.jpg",
 "mug_150x150_Back.jpg",
 "tote_150x150_Front.jpg",
 "travel_150x150_Front.jpg",
 "white-t_150x150_Front_Color-White.jpg"
];
rtexts = [
 "Get your web on.",
 "Share the web",
 "Visit the ClickSchooling Store",
 "Show your support for ClickSchooling!"
];

var rimage1 = rimages[Math.floor(Math.random()*rimages.length)];
var rimage2 = rimages[Math.floor(Math.random()*rimages.length)];
var rtext1 = rtexts[Math.floor(Math.random()*rtexts.length)];

document.write('<table cellspacing="0" border="0" cellpadding="0" style="margin-top:5px;margin-bottom:10px;"><tr><td>');
document.write('<a href="http://www.cafepress.com/clickschooling" title="' + rtext1 + '">');
document.write('<img src="http://clickschooling.com/images/' + rimage1 + '" width="150" height="150" alt="' + rtext1 + '" />');
document.write('</a>');
document.write('</td><td>');
document.write('<a href="http://www.cafepress.com/clickschooling" title="' + rtext1 + '">');
document.write('<img src="http://clickschooling.com/images/' + rimage2 + '" width="150" height="150" alt="' + rtext1 + '" />');
document.write('</a>');
document.write('</td></tr><tr><td colspan="2">');
document.write('<p><a href="http://www.cafepress.com/clickschooling" title="' + rtext1 + '">');
document.write(rtext1);
document.write('</a></p>');
document.write('</td></tr></table>');
