function random_text()



{};



var random_text = new random_text();



// Set the number of text strings to zero to start



var number = 0;



// Incremental list of all possible Text









random_text[number++] = "<a href='http://www.clubcivic.com/board/private.php?do=newpm&u=1' class='bluelink'><strong><img src='http://www.clubcivic.com/board/products/mishimoto-radiator.jpg' width=63 height=50 border='0' align='left' style='margin-right:6px;border:1px solid #000000;'><u><font color='#000000'>Mishimoto Radiator</font></u></strong><br>On Sale Now<br><font color='#990000'>Request a price.</font></a>"

random_text[number++] = "<a href='http://www.tunersports.com/products/tein/tein-s-tech-springs_38.html' class='bluelink'><strong><img src='http://www.clubcivic.com/board/products/tein-stech.jpg' width=63 height=50 border='0' align='left' style='margin-right:6px;border:1px solid #000000;'><u><font color='#000000'>TEIN SALE</font></u></strong><br>Tein S Tech Springs<br><font color='#990000'>On Sale Now!</font></a>"

random_text[number++] = "<a href='http://www.tunersports.com/products/etd-racing/etd-racing-traction-bar_50.html' class='bluelink'><strong><img src='http://www.clubcivic.com/board/products/etd-tractionbar.jpg' width=63 height=50 border='0' align='left' style='margin-right:6px;border:1px solid #000000;'>ETD Racing Traction Bars</strong><br><font color='#990000'>Starting at $269.10 Shipped</font></a>"


/*random_text[number++] = "<a href='http://www.xenonvisions.com/' class='bluelink'><strong><img src='http://www.clubcivic.com/board/products/xenonvisions.jpg' width=63 height=50 border='0' align='left' style='margin-right:6px;border:1px solid #000000;'><u><font color='#000000'>Featured Product</font></u></strong><br><font color='#990000'>Premium HID Kits $110<br>SLIM kits $135 <br><font size=1>(free shipping)</font></font></a>"*/










// Create a random number with limits based on the number



// of possible random text strings



var random_number = Math.floor(Math.random() * number);



// Write out the random text to the browser



document.write(random_text[random_number]);