

<!-- AUTHOR: CARL J. SWANSON carl@swanson.name -->
<!-- Copyright: 2002 -->
<!-- Just Follow the comments and you should be ok. -->

var gDate = new Array()

gDate[0] = "9/1"
gDate[1] = "9/13"
gDate[2] = "9/20"
gDate[3] = "9/27"
gDate[4] = "10/4"
gDate[5] = "10/11"
gDate[6] = "10/18"
gDate[7] = "10/25"
gDate[8] = "11/1"
gDate[9] = "11/8"
gDate[10] = "11/22"
gDate[11] = "11/29"
gDate[12] = "12/6"



var gOpp = new Array()

gOpp[0] = "@UCLA"
gOpp[1] = "UAB"
gOpp[2] = "Florida"
gOpp[3] = "@Auburn"
gOpp[4] = "Northern Ill."
gOpp[5] = "@Georgia"
gOpp[6] = "Miss. St."
gOpp[7] = "Alabama"
gOpp[8] = "@South Carolina"
gOpp[9] = "Wyoming"
gOpp[10] = "@Vanderbilt"
gOpp[11] = "Kentucky"
gOpp[12] = "SEC Championship"



var tScore = new Array()

tScore[0] = "L 27-24(OT)"
tScore[1] = "W 35-3"
tScore[2] = "L 30-6"
tScore[3] = "L 14-12"
tScore[4] = "7pm"
tScore[5] = "3:30pm"
tScore[6] = "TBA"
tScore[7] = "TBA"
tScore[8] = "TBA"
tScore[9] = "1pm"
tScore[10] = "TBA"
tScore[11] = "TBA"
tScore[12] = "4pm"

var tSite = new Array()

tSite[0] ="http://uclabruins.cstv.com/sports/m-footbl/ucla-m-footbl-body.html"
tSite[1] ="http://uabsports.cstv.com/sports/m-footbl/albr-m-footbl-body.html"
tSite[2] ="http://www.gatorzone.com/football/"
tSite[3] ="http://auburntigers.cstv.com/sports/m-footbl/aub-m-footbl-body.html"
tSite[4] ="http://niuhuskies.cstv.com/sports/m-footbl/niu-m-footbl-body.html"
tSite[5] ="http://www.georgiadogs.com/SportSelect.dbml?DB_OEM_ID=8800&KEY=&SPID=3571&SPSID=40673"
tSite[6] ="http://www.mstateathletics.com/SportSelect.dbml?DB_OEM_ID=16800&SPID=10997"
tSite[7] ="http://www.rolltide.com/sports/m-footbl/alab-m-footbl-body.html"
tSite[8] ="http://gamecocksonline.cstv.com/sports/m-footbl/scar-m-footbl-body.html"
tSite[9] ="http://wyomingathletics.cstv.com/sports/m-footbl/wyo-m-footbl-body.html"
tSite[10] ="http://vucommodores.cstv.com/sports/m-footbl/vand-m-footbl-body.html"
tSite[11] ="http://www.ukathletics.com/sports/m-footbl/kty-m-footbl-body.html"
tSite[12] ="http://www.secsports.com"


// DO NOT EDIT BELOW THIS LINE PLEASE
<!-- ********************************************** -->


var schTab = ""
schTab += "<TABLE border=1 align=center cellspacing=0 cellpadding=0 "
schTab += "<tr align=center><td colspan=3><font size=2><b>2008 VOLS SCHEDULE</b></font></td></tr>"
schTab += "<tr align=center><td><font size=2>DATE</font></td><td><font size=2>OPPONENT</font></td><td><font size=2>TIME/SCORE</font></td></tr>"



for (var i = 0; i < gDate.length; i++) {

	schTab += "<tr align=center><td><font size=2>" + gDate[i] + "</font></td>"
	schTab += "<td><font size=3><strong><a href='" + tSite[i] + "' target=_blank>" + gOpp[i] + "</a></strong></font></td>"
	schTab += "<td><font size=2>" + tScore[i] + "</font></td></tr>"

}
schTab += "<tr align=left><td colspan=3><font size=2>All Times Eastern Standard</font></td></tr>"
schTab += "</table>"


