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)

ideas = new makeArray(22);
ideas[0] = "Michelle will make you breakfast";
ideas[1] = "Michelle will give you a hug"
ideas[2] = "Michelle will rent you a movie"
ideas[3] = "Michelle will share her ice cream with you"
ideas[4] = "Michelle will save the sports page for you"
ideas[5] = "Michelle will help you look for your keys"
ideas[6] = "Michelle will teach you to dance"
ideas[7] = "Michelle will drive you to work"
ideas[8] = "Michelle will help you with your homework"
ideas[9] = "Michelle will tivo your favorite shows"
ideas[10] = "Michelle will like your cooking"
ideas[11] = "Michelle will play chess with you"
ideas[12] = "Michelle will help cut coupons"
ideas[13] = "Michelle will buy you a hot dog"
ideas[14] = "Michelle will give you fashion advice"
ideas[15] = "Michelle will go to the mall with you"
ideas[16] = "Michelle will share her happy meal with you"
ideas[17] = "Michelle will comb your hair"
ideas[18] = "Michelle will eat your veggies"
ideas[19] = "Michelle will order you a pizza"
ideas[20] = "Michelle will wait in line with you"
ideas[21] = "Michelle will help you find the remote"

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff
