<!-- Today's Routes Code-->

function isBreak(today)
{
var myMonths=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var January=0;
var February=1;
var March=2;
var April=3;
var May=4;
var June=5;
var July=6;
var August=7;
var September=8;
var October=9;
var November=10;
var December=11;

/* 
PRINT BREAK DAYS
This section displays a link to the break schedule for all break days.
The dates of each break must be edited each year so the correct message 
appears on the correct day.
*/

/*Memorial Day
TO EDIT: change the number in quotation marks in today.getDate()=="" to 
be the date of Memorial Day for the current school year.
*/
if(myMonths[today.getMonth()]=="May" && today.getDate()=="25")
{  return("<BR>Today is Memorial Day.  Use the summer Saturday schedules.");}

/*July 4th
TO EDIT: change the number in quotation marks in today.getDate()=="" to 
be the date of July 4th for the current school year.
*/
if(myMonths[today.getMonth()]=="July" && today.getDate()=="3")
{  return("<BR>Today is Friday, July 3rd.  CyRide is celebrating the July 4th holiday.  Use the summer Saturday schedules.");}

/*Labor Day
TO EDIT: change the number in quotation marks in today.getDate()=="" to 
be the date of Labor Day for the current school year.
*/
if(myMonths[today.getMonth()]=="September" && today.getDate()=="7")
{  return("<BR>Today is Labor Day.  CyRide is running a SATURDAY Break Schedule meaning shaded lines on the schedule do not operate.  Please <a href=\"/routes/breakdays.html\">click here</a> for more information about break days.");}

/*MLK Day
TO EDIT: change the number in quotation marks in today.getDate()=="" to 
be the date of Martin Luther King Day for the current school year.
*/
if(myMonths[today.getMonth()]=="January" && today.getDate()=="18")
{ return("<BR>Today is Martin Luther King Day.  CyRide is running a Break Schedule meaning shaded lines on the schedule do not operate.  Please <a href=\"/routes/breakdays.html\">click here</a> for more information about break days..");}

/*Thanksgiving Break
TO EDIT: change the numbers in quotation marks in today.getDate()>="" and
 today.getDate()<="" to be the dates that Thanksgiving break starts
 and ends on for the current school year.
*/
if(myMonths[today.getMonth()]=="November" && today.getDate()>="21" && today.getDate()<="29")
{ return("<BR>Today is Thanksgiving Break.  CyRide is running a Break Schedule meaning shaded lines on the schedule do not operate.  Please <a href=\"/routes/breakdays.html\">click here</a> for more information about break days.");}


/*Semester Break - December
TO EDIT: change the numbers in quotation marks in today.getDate()>="" and
 today.getDate()<="" to be the dates that Semester break starts
 and ends on IN DECEMBER for the current school year. (so the ending date will always be 31)
 */
if(myMonths[today.getMonth()]=="December" && today.getDate()>="19" && today.getDate()<="31")
{ return("<BR>Today is Semester Break.  CyRide is running a Break Schedule meaning shaded lines on the schedule do not operate.  Please <a href=\"/routes/breakdays.html\">click here</a> for more information about break days.");}

/*Semester Break - January
TO EDIT: change the numbers in quotation marks in today.getDate()>="" and
 today.getDate()<="" to be the dates that Semester break starts
 and ends on IN JANUARY for the current school year. (so the starting date will always be 1)
*/
if(myMonths[today.getMonth()]=="January" && today.getDate()>="2" && today.getDate()<="10")
{ return("<BR>Today is Semester Break.  CyRide is running a Break Schedule meaning shaded lines on the schedule do not operate.  Please <a href=\"/routes/breakdays.html\">click here</a> for more information about break days.");}

/*Spring Break
TO EDIT: change the numbers in quotation marks in today.getDate()>="" and
 today.getDate()<="" to be the dates that spring break starts
 and ends on for the current school year.
*/
if(myMonths[today.getMonth()]=="March" && today.getDate()>="13" && today.getDate()<="21")
{ return("<BR>Today is Spring Break.  CyRide is running a Break Schedule meaning shaded lines on the schedule do not operate.  Please <a href=\"/routes/breakdays.html\">click here</a> for more information about break days.");}

/*Summer*/
var startSummer= new Date();
var endSummer=new Date();
//To change the following dates, be sure to capitalize the first
//letter of the name of the month.

/*Start date of summer
TO EDIT: change the part in the parenthesis to the correct Month, Day, and Year*/

startSummer.setMonth(May);
startSummer.setDate(9);
startSummer.setYear(2009);

/*End date of summer
TO EDIT: change the part in the parenthesis to the correct Month, Day, and Year*/
endSummer.setMonth(August);
endSummer.setDate(20);
endSummer.setYear(2009);

/* PRINT ROUTES TABLES
If it is not a break day, then print the routes tables, depending on what day of the week it is.
We have routes tables for:
---Summer---
- Sundays
- Saturdays
- Weekdays
---School year---
- Sundays
- Saturdays
- Weekdays - Monday through Thursday (no Moonlight Express)
- Weekdays - Friday (Moonlight Express)
*/
var htmlcode='<table border="1" class="routes" cellpadding="3" cellspacing="1" width="170">';

/**********Summer**********/
if(today<=endSummer && today>=startSummer)
{
/* Sundays - Summer
TO EDIT: If you want to add a route, you must do the following:
Copy and paste the following two lines in the empty line in the code section below:
	'<td><a href="routes/Fall/sureds.html">#1 Red South &amp; West</a></td></tr>'+
	'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+ 
Then, change the <a href=""> link to go to the correct page. Change the text (#1 Red South &amp; West) to 
be the name of the route. (The &amp; is just the '&' symbol)
To delete a route, just delete those two corresponding lines from the code section below.
*/
	if(today.getDay()==0)
	{
			htmlcode=htmlcode+'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SURedSouth.html">#1 Red South &amp; West</a></td></tr>'+
			'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SURedEast.html">#1 Red&nbsp;East&amp; North</a></td></tr>'+
			'<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SUGreenSouth.html">#2 Green South &amp; West</a></td></tr>'+
			'<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SUGreenEast.html">#2 Green East &amp; North</a></td></tr>'+
			'<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SUBlueSouth.html">#3 Blue South</a></td></tr>'+
			'<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SUBlueNorth.html">#3 Blue&nbsp;North</a></td></tr>'+
			'<tr><td bgcolor="#ffffff" width="10"><img src="http://www.public.iastate.edu/~cyrideweb/images/phone.gif" width="10" height="20"></td>'+
			'<td><a href="routes/Summer/dial_a_ride.html">Dial-A-Ride</a></td></tr></table>';
	}

/* Saturdays - Summer
TO EDIT: If you want to add a route, you must do the following:
Copy and paste the following two lines in the empty line in the code section below:
	'<td><a href="routes/Fall/sureds.html">#1 Red South &amp; West</a></td></tr>'+
	'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+ 
Then, change the <a href=""> link to go to the correct page. Change the text (#1 Red South &amp; West) to 
be the name of the route. (The &amp; is just the '&' symbol)
To delete a route, just delete those two corresponding lines from the code section below.
*/
	if(today.getDay()==6)
	{	
	    htmlcode=htmlcode+'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SARedSouth.html">#1 Red South &amp; West</a></td></tr>'+
			'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SARedEast.html">#1 Red East &amp; North</a></td></tr>'+
			'<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SAGreenSouth.html">#2 Green  South &amp; West</a></td></tr>'+
			'<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SAGreenEast.html">#2 Green East &amp; North</a></td></tr>'+
			'<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SABlueSouth.html">#3 Blue South</a></td></tr>'+
			'<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SABlueNorth.html">#3 Blue North</a></td></tr>'+
			'<tr><td bgcolor="#FFFF00" width="10">&nbsp;</td>'+
			'<td><a href="routes/Summer/SAYellow.html">#5 Yellow</a></td></tr>'+
	             '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	             '<td><a href="routes/Summer/SABrown.html">#6 Brown</a></td></tr>'+
			'<tr><td bgcolor="#ffffff" width="10"><img src="http://www.public.iastate.edu/~cyrideweb/images/phone.gif" width="10" height="20"></td>'+
			'<td><a href="routes/dial_a_ride.html">Dial-A-Ride</a></td></tr></table>';
	
	}

/* Weekdays - Summer
TO EDIT: If you want to add a route, you must do the following:
Copy and paste the following two lines in the empty line in the code section below:
	'<td><a href="routes/Fall/sureds.html">#1 Red South &amp; West</a></td></tr>'+
	'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+ 
Then, change the <a href=""> link to go to the correct page. Change the text (#1 Red South &amp; West) to 
be the name of the route. (The &amp; is just the '&' symbol)
To delete a route, just delete those two corresponding lines from the code section below.
*/
	if(today.getDay()<6 && today.getDay()>0)
	{	
	       htmlcode=htmlcode+'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDRedSouth.html">#1 Red South &amp; West</a></td></tr>'+
		   '<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDRedEast.html">#1 Red East &amp; North</a></td></tr>'+
		   '<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDGreenSouth.html">#2 Green&nbsp;South &amp; West</a></td></tr>'+
		   '<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDGreenEast.html">#2 Green East &amp; North</a></td></tr>'+
		   '<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDBlueSouth.html">#3 Blue South</a></td></tr>'+
		   '<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDBlueNorth.html">#3 Blue North</a></td></tr>'+
		   '<tr><td bgcolor="#C0C0C0" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDGray.html">#4 Gray</a></td></tr>'+
		   '<tr><td bgcolor="#FFFF00" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDYellow.html">#5 Yellow</a></td></tr>'+
		   '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDBrown.html">#6 Brown</a></td></tr>'+
		   '<tr><td bgcolor="#9900FF" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDPurple.html">#7 Purple</a></td></tr>'+
		   '<tr><td bgcolor="#FF9900" width="10">&nbsp;</td>'+
		   '<td><a href="routes/Summer/WDOrange.html">#23 Orange</a></td></tr>'+
		   '<tr><td bgcolor="#ffffff" width="10"><img src="http://www.public.iastate.edu/~cyrideweb/images/phone.gif" width="10" height="20"></td>'+
		   '<td><a href="routes/dial_a_ride.html">Dial-A-Ride</a></td></tr></table>';
	}

}
else
{
/***********School year**********/
/* Sundays - School year
TO EDIT: If you want to add a route, you must do the following:
Copy and paste the following two lines in the empty line in the code section below:
	'<td><a href="routes/Fall/sureds.html">#1 Red South &amp; West</a></td></tr>'+
	'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+ 
Then, change the <a href=""> link to go to the correct page. Change the text (#1 Red South &amp; West) to 
be the name of the route. (The &amp; is just the '&' symbol)
To delete a route, just delete those two corresponding lines from the code section below.
*/
	if(today.getDay()==0)
	{
	    htmlcode=htmlcode+'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td> '+
		'<td><a href="routes/Fall/sureds.html">#1 Red South &amp; West</a></td></tr>'+
		'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
		'<td><a href="routes/Fall/surede.html">#1 Red&nbsp;East&amp; North</a></td></tr>'+
		'<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
		'<td><a href="routes/Fall/sugreens.html">#2 Green South &amp; West</a></td></tr>'+
		'<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
		'<td><a href="routes/Fall/sugreene.html">#2 Green East &amp; North</a></td></tr>'+
		'<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
		'<td><a href="routes/Fall/sublues.html">#3 Blue South</a></td></tr>'+
		'<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
		'<td><a href="routes/Fall/subluen.html">#3 Blue&nbsp;North</a></td></tr>'+
	    '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/Towers Shuttle.html">#6A Towers/Campus</a></td></tr>'+
		'<tr><td bgcolor="#ffffff" width="10"><img src="http://www.public.iastate.edu/~cyrideweb/images/phone.gif" width="10" height="20"></td>'+
		'<td><a href="routes/dial_a_ride.html">Dial-A-Ride</a></td></tr></table>\n';
	}

/* Saturdays - School year
TO EDIT: If you want to add a route, you must do the following:
Copy and paste the following two lines in the empty line in the code section below:
	'<td><a href="routes/Fall/sureds.html">#1 Red South &amp; West</a></td></tr>'+
	'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+ 
Then, change the <a href=""> link to go to the correct page. Change the text (#1 Red South &amp; West) to 
be the name of the route. (The &amp; is just the '&' symbol)
To delete a route, just delete those two corresponding lines from the code section below.
*/
	if(today.getDay()==6)
	{	
	    htmlcode=htmlcode+'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
	    '<td width="200"><a href="routes/Fall/sareds&w.html">#1 Red South  &amp; West</a></td></tr>'+
	    '<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/sarede&n.html">#1 Red&nbsp;East  &amp; North</a></td></tr>'+
	    '<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/sagreens.html">#2 Green  South &amp; West</a></td></tr>'+
	    '<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/sagreene.html">#2 Green  East &amp; North</a></td></tr>'+
	    '<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/sablues.html">#3 Blue&nbsp;South</a></td></tr>'+
	    '<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/sabluen.html">#3 Blue North</a></td></tr>'+
	    '<tr><td bgcolor="#FFFF00" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/sayellow.html">#5 Yellow</a></td></tr>'+
	     '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/sabrown.html">#6 Brown</a></td></tr>'+
 	    '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/Towers Shuttle.html">#6A Towers/Campus</a></td></tr>'+
	    '<tr><td bgcolor="#ffffff" width="10"><img src="http://www.public.iastate.edu/~cyrideweb/images/phone.gif" width="10" height="20"></td>'+
		'<td><a href="routes/dial_a_ride.html">Dial-A-Ride</a></td></tr>'+
	    '<tr><td bgcolor="#ffffff" width="10"><img src="http://www.public.iastate.edu/~cyrideweb/images/moon.gif" width="10" height="20"></td>'+
	    '<td><a href="routes/Fall/moonlight_express.html">Moonlight Express</a></td></tr></table>';
	}

	/* Weekdays - Monday through Thursday -
TO EDIT: If you want to add a route, you must do the following:
Copy and paste the following two lines in the empty line in the code section below:
	'<td><a href="routes/Fall/sureds.html">#1 Red South &amp; West</a></td></tr>'+
	'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+ 
Then, change the <a href=""> link to go to the correct page. Change the text (#1 Red South &amp; West) to 
be the name of the route. (The &amp; is just the '&' symbol)
To delete a route, just delete those two corresponding lines from the code section below.
*/
	if(today.getDay()<5 && today.getDay()>0)
	{	
	
	    htmlcode=htmlcode+'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
	    '<td width="200"><a href="routes/Fall/wdreds&w.html">#1 Red South &amp; West</a></td></tr>'+
	    '<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdrede&n.html">#1 Red East &amp; North</a></td></tr>'+
	    '<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdgreens.html">#2 Green&nbsp;South &amp; West</a></td></tr>'+
	    '<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdgreene.html">#2 Green East &amp; North</a></td></tr>'+
	    '<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdblus.html">#3 Blue South</a></td></tr>'+
	    '<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdbluen.html">#3 Blue North</a></td></tr>'+
	    '<tr><td bgcolor="C0C0C0" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdGray.html">#4 Gray</a></td></tr>'+
	    '<tr><td bgcolor="#FFFF00" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdyellow.html">#5 Yellow</a></td></tr>'+
	    '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdbrownSouth.html">#6 Brown South</a></td></tr>'+
	    '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdbrownNorth.html">#6 Brown North</a></td></tr>'+
	    '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/Towers Shuttle.html">#6A Towers/Campus</a></td></tr>'+
	    '<tr><td bgcolor="#FF00FF" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdpurple.html">#7 Purple</a></td></tr>'+
	    '<tr><td bgcolor="#D50000" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdCardinal.html">#21 Cardinal</a></td></tr>'+
	    '<tr><td bgcolor="#808000" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdgold.html">#22 Gold</a></td></tr>'+
	    '<tr><td bgcolor="#FF9900" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdorange.html">#23 Orange</a></td></tr>'+
	    '<tr><td bgcolor="#008000" width="10">&nbsp;</td>'+
	   '<td><a href="routes/dial_a_ride.html">Dial-A-Ride</a></td></tr>'+
	    '</td></tr></table>';
	}

/* Weekdays - Friday - School year
TO EDIT: If you want to add a route, you must do the following:
Copy and paste the following two lines in the empty line in the code section below:
	'<td><a href="routes/Fall/sureds.html">#1 Red South &amp; West</a></td></tr>'+
	'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+ 
Then, change the <a href=""> link to go to the correct page. Change the text (#1 Red South &amp; West) to 
be the name of the route. (The &amp; is just the '&' symbol)
To delete a route, just delete those two corresponding lines from the code section below.
*/
	if(today.getDay()<6 && today.getDay()>4)//Weekdays - Friday - School year
	{	
	    htmlcode=htmlcode+'<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
	    '<td width="200"><a href="routes/Fall/wdreds&w.html">#1 Red South &amp; West</a></td></tr>'+
	    '<tr><td bgcolor="#FF0000" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdrede&n.html">#1 Red East &amp; North</a></td></tr>'+
	    '<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdgreens.html">#2 Green&nbsp;South &amp; West</a></td></tr>'+
	    '<tr><td bgcolor="#00FF00" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdgreene.html">#2 Green East &amp; North</a></td></tr>'+
	    '<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdblus.html">#3 Blue South</a></td></tr>'+
	    '<tr><td bgcolor="#0000FF" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdbluen.html">#3 Blue North</a></td></tr>'+
	     '<tr><td bgcolor="#C0C0C0" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdGray.html">#4 Gray</a></td></tr>'+
	    '<tr><td bgcolor="#FFFF00" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdyellow.html">#5 Yellow</a></td></tr>'+
	    '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdbrownSouth.html">#6 Brown South</a></td></tr>'+
	    '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdbrownNorth.html">#6 Brown North</a></td></tr>'+
	    '<tr><td bgcolor="#996633" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/Towers Shuttle.html">#6A Towers/Campus</a></td></tr>'+
	    '<tr><td bgcolor="#FF00FF" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdpurple.html">#7 Purple</a></td></tr>'+
	    '<tr><td bgcolor="#D50000" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdCardinal.html">#21 Cardinal</a></td></tr>'+
	    '<tr><td bgcolor="#808000" width="10">&nbsp;</td>'+
	    '<td><a href="routes/Fall/wdgold.html">#22 Gold</a></td></tr>'+
	    '<tr><td bgcolor="#FF9900" width="10">&nbsp;</td>'+
		'<td><a href="routes/Fall/wdorschool.html">#23 Orange</a></td></tr>'+
	    '<tr><td bgcolor="#008000" width="10">&nbsp;</td>'+
	    '<td><a href="routes/dial_a_ride.html">Dial-A-Ride</a></td></tr>'+
	    '<tr><td bgcolor="#ffffff" width="10"><img src="http://www.public.iastate.edu/~cyrideweb/images/moon.gif" width="10" height="20"></td>'+
	    '<td><a href="routes/Fall/moonlight_express.html">Moonlight Express</a></td></tr></table>';
	}
}
return(htmlcode);

}