function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

news = new makeArray(6);
news[0] = "<p>Andrewtech Automotive has moved! Come check out our new showroom.</p>"					
news[1] = "<p>The Australian Dollar is getting stronger...Get your PPG's now while the pricing is good!</p>"
news[2] = "<p>Pfitzner Performance Gearbox releases gearsets for the Nissan GT-R.  Upgrade 1st gear, or the whole set before they break!  </p>"
news[3] = "<p>Vision Function supercharger kits are now available for the Lotus Elise and Exige models. 300whp in a 2000 lb. car sure is fun!</p>"
news[4] = "<p>TurboXS FMIC kits are now available for the MY08-09 Subaru WRX.  <a href='contact-us.html'>Contact us</a> to get special installed pricing.</p>"
news[5] = "<p>Pfitzner Performance Gearbox releases multiple gearsets for the Honda K-Series transmission.  Synchonized, dog engagement and final drive sets are available to suit your needs.  Please <a href='contact-us.html'>contact us</a> for more information.</p>"
news[6] = "<p></p>"
news[7] = "<p></p>"
news[8] = "<p></p>"
news[9] = "<p></p>"
news[10] = "<p></p>"
news[11] = "<p></p>"
news[12] = "<p></p>"
news[13] = "<p></p>"
news[14] = "<p></p>"
news[15] = "<p></p>"
news[16] = "<p></p>"
news[17] = "<p></p>"
news[18] = "<p></p>"
news[19] = "<p></p>"
news[20] = "<p></p>"
news[21] = "<p></p>"

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff
