
	<!-- Hide script from old browsers

<!-- Copyright 2001, Sandeep Gangadharan -->
<!-- For more free scripts go to http://sivamdesign.com/scripts/ -->

<!--
var 
month = new Array();
month[0]="January";	
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";

var 
day = new Array();
day[0]="Sunday";
day[1]="Monday";
day[2]="Tuesday";
day[3]="Wednesday";
day[4]="Thursday";
day[5]="Friday";
day[6]="Saturday";

today = new Date();
date = today.getDate();
day = (day[today.getDay()]);
month = (month[today.getMonth()]);
year = (today.getFullYear());

 suffix = (date==1 || date==21 || date==31) ? "st" : "th" &&
 (date==2 || date==22) ? "nd" : "th" && (date==3 || date==23) ? "rd" : "th"

function print_date()
{
  document.write(day + "," + "&nbsp;" + date  + "<sup>" + suffix + "</sup>" + "&nbsp;" + 
  month + "," + "&nbsp;" + year);
}



function newImage(arg)
{
if (document.images)
   {
rslt = new Image();
rslt.src = arg;
return rslt;
   }
}



if (document.images)
{ 
   home_on = new Image

   asbcc_on = new Image
   info_on = new Image
   comm_on = new Image
   clubs_on = new Image
   events_on = new Image
   new_on = new Image
   office_on = new Image
   prog_on = new Image

   home_on.src = "../images/home_on.gif"

   asbcc_on.src = "../images/asbcc_on.gif"
   info_on.src = "../images/info_on.gif"
   comm_on.src = "../images/comm_on.gif"
   clubs_on.src = "../images/clubs_on.gif"
   events_on.src = "../images/events_on.gif"
   new_on.src = "../images/new_on.gif"
   office_on.src = "../images/office_on.gif"
   prog_on.src = "../images/prog_on.gif"
}
else
{
   home_on = ""

   asbcc_on = ""
   info_on = ""
   comm_on = ""
   clubs_on = ""
   events_on = ""
   new_on = ""
   office_on = ""
   prog_on = ""
   document.arrow = ""
}

// -->	