/*Link of the month script credit-
By JavaScript Kit (http://www.javascriptkit.com)
Over 200+ free scripts here!
*/

//Specify monthly text and links.
var monthly_links=new Array(
"Events", "/events.php?listmonth=1&year=2010&month=01",   //January
"Events", "/events.php?listmonth=1&year=2010&month=02",   // Feburary 
"Events", "/events.php?listmonth=1&year=2010&month=03",   // March 
"Events", "/events.php?listmonth=1&year=2010&month=04",   // April 
"Events", "/events.php?listmonth=1&year=2010&month=05",   // May 
"Events", "/events.php?listmonth=1&year=2010&month=06",   // June 
"Events", "/events.php?listmonth=1&year=2010&month=07",   // July 
"Events", "/events.php?listmonth=1&year=2010&month=08",   // August 
"Events", "/events.php?listmonth=1&year=2010&month=09",   // September 
"Events", "/events.php?listmonth=1&year=2010&month=10",   // October 
"Events", "/events.php?listmonth=1&year=2010&month=11",   // November 
"Events", "/events.php?listmonth=1&year=2010&month=12"   // December
)

var dateobj=new Date()
document.write('<a href="'+monthly_links[dateobj.getMonth()*2+1]+'">'+monthly_links[dateobj.getMonth()*2]+'</a>')