// JavaScript Document
// Trevor says: "The Cake is a LIE!!!"
var d = new Date();


var t_date = d.getDate();      // Returns the day of the month
var t_mon = d.getMonth();      // Returns the month as a digit
var t_year = d.getFullYear();  // Returns 4 digit year
var t_hour = d.getHours();     // Returns hours
var t_min = d.getMinutes();    // Returns minutes
var t_sec = d.getSeconds();    // Returns seocnds
var t_mil = d.getMilliseconds;  // Returns Milliseconds

t_mon++

if (t_mon == 10 && t_date == 26)
{
var ran_unrounded=Math.random()*50;
var ran_number=Math.floor(ran_unrounded); 

if (ran_number == 3)
{
   alert("Come to the game against Del Oro tonight and support!!!")
}
if (ran_number == 8)
{
   alert("Down with the Eagles, up with the Thunder!!!")
}
if (ran_number == 13)
{
   alert("Don't let Del Oro out cheer us! Come and support!!!")
}
if (ran_number == 18)
{
   alert("Onward to victory!!!")
}
if (ran_number == 23)
{
   alert("This is our house!!!")
}
}
