// Random Quotes for Main page

// Set to number of quotes available.
var number=6;
today=new Date();
jran=today.getTime();
var random_number=0;
ia=9301;
ic=49297;
im=233280;
jran = (jran*ia+ic) % im;
random_number=Math.ceil( (jran/(im*1.0)) *number);
quotes = new Array(number);

quotes[0] = "Reason #1: Who's Your Daddy? No really... where did Pedro go?";
quotes[1] = "Reason #2: Manny Ramirez asked the Sox to trade him because he's unhappy over a lack of off-the-field privacy in Boston.";
quotes[2] = "Reason #3: Their fans riot in celebration when they win the Wild Card.";
quotes[3] = "Reason #4: Cowboy..... down and out.";
quotes[4] = "Reason #5: They have 6 World Series title to the Yankees 26.";
quotes[5] = "Reason #6: Their all time record against the Yanks(through 2005): 890-1,068";
//quotes[6] = "";
//quotes[7] = "";
//quotes[8] = "";
//quotes[9] = "";
//quotes[10] = "";
//quotes[11] = "";
//quotes[12] = "";
//quotes[13] = "";
//quotes[14] = "";
//quotes[15] = "";
//quotes[16] = "";
//quotes[17] = "";
//quotes[18] = "";
//quotes[19] = "";
//quotes[20] = "";
//quotes[21] = "";
//quotes[22] = "";
//quotes[23] = "";
//quotes[24] = "";
//quotes[25] = "";
document.open();


