<!--
function spawnWindow(URL,Name,features) {
window.open(URL,Name,features);
}

function displayAid()
{
  var i=0;
  banners = new Array();
  banners[0] = "<a href='http://www.ugandacan.org'><img src='http://www.ugandacan.org/skins/UCAN/images/top_logo.jpg' width='125'></a>";
  banners[1] = "<a href='http://www.malteser.de/61.Malteser_International/en/default_en.htm'><img src='http://www.malteser.de/images/Logo-MI-standard-4c_6526.jpg' width='135' border='0'></a>";
  banners[2] = "<a href='http://www.ugandacan.org'><img src='http://www.ugandacan.org/skins/UCAN/images/top_logo.jpg' width='125'></a>";
  today = new Date();
  i=today.getSeconds();
  n=banners.length;
  return banners[i-Math.round((i-1)/n)*n];
 
}

function spawnPractice()
{
spawnWindow('muPractice.html','practice','width=600,height=500,scrollbars=yes');
}

function spawnFees()
{
javascript:spawnWindow('muFees.html','fees','width=600,height=500,scrollbars=yes');
}
/*define onload handler*/

function init() {
// main list here
	var width=175, height=22;
        var aidBanner = displayAid(); 
	var topList = new List(true, width, height+5, "E7E9F8", "blank.gif","blank.gif");
	topList.setFont("<span class='topList'>","</span>");
// Add items to the list...
// Items will appear in the list in the order they
// are added from the top down.

// the "class" attribute refers to the stylesheet for this site


// Create a sublist as the first Item
	  var aboutList = new List(true, width, height, "FFFFFF");
	  aboutList.setFont("<span class='subList2'>","</span>");
	    aboutList.addItem("<a href='contact.html'>Contact Info</a>");
            //aboutList.addItem("<a href='index.php#Fall'>Schedule</a>");
            //aboutList.addItem("<a href='javascript:spawnFees()'>Fee Schedule</a>");
            aboutList.addItem("<a href='javascript:spawnPractice()'>Practice</a>");
	    //aboutList.addItem("<a href='members.php'>Member Roster</a>");
	    aboutList.addItem("<a href='constitution.html'>MU CFS Constitution</a>");
            aboutList.addItem("<hr/>");
	    aboutList.addItem("<a href='http://www.cafepress.com/cfssda/'>Store</a>");
	    aboutList.addItem("<a href='index.php'>MU CFS Home</a>");
	    aboutList.addItem("<a href='http://www.cfssda.org/main.php'>CFS Home</a>");
            aboutList.addItem("<a href='http://cfssda.campfirenow.com' target='_blank'>Forum</a>")
	topList.addList(aboutList, "About The CFS@MU");

	  var branchList = new List(true, width, height, "FFFFFF");
	  branchList.setFont("<span class='subList2'>","</span>");
	    branchList.addItem("<a href='http://stl.cfssda.org'>Saint Louis </a>");
	    branchList.addItem("<a href='http://mu.cfssda.org'>Milwaukee</a>");
	    //branchList.addItem("<a href='http://www.kabalfencing.org'>Kabal</a>");

	topList.addList(branchList, "CFS Branches");
	
	//topList.addItem("<a href='events.html'>Events</a>");
	  

	topList.addItem("<a href='pictures.html'>Pictures</a>");

  var aid = new List(true, width, height+200, "E7E9F8");
  aid.addItem(aidBanner);
  topList.addList(aid, "Please Support:");
	
           var spacer = new List(true, width, height+1100, "E7E9F8");
                        spacer.addItem("&nbsp;");
               
        topList.addList(spacer, "&nbsp;");

	topList.build(0,115);
}

function redo()
{
  document.location.reload();
}
// -->
