  <!--
  function showDate(){
    // initialize days
    var days = new Array(7);
    days[0] = "Sunday";
    days[1] = "Monday";
    days[2] = "Tuesday";
    days[3] = "Wednesday";
    days[4] = "Thursday";
    days[5] = "Friday";
    days[6] = "Saturday";
    
    // initialize months
    var months = new Array(12)
    months[0] = "January";
    months[1] = "February";
    months[2] = "March";
    months[3] = "April";
    months[4] = "May";
    months[5] = "June";
    months[6] = "July";
    months[7] = "August";
    months[8] = "September";
    months[9] = "October";
    months[10] = "November";
    months[11] = "December";
    
    var rawDate = new Date();
    var date = days[rawDate.getDay()];
    date += " ";
    date += months[rawDate.getMonth()];
    date += " ";
    date += rawDate.getDate();
    date += ", ";
    var y = rawDate.getYear();
    if (y < 1000) {y += 1900};
    date += y;
    
    document.write(date);
  }
  

  function openWin(image, myWidth, myHeight){
    var newWindow, pic, img;

    pic = new Image();
    img = image+'.jpg';
    pic.src=(img);
    newWindow = window.open("","newWin","width="+myWidth+",height="+myHeight+",top=20,left=20");
	newWindow.document.write('<html><title>T E U T O N I C . C A</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close();">');
	newWindow.document.write('<img src="'+img+'">');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
  }


  //preload rollover images  
  if (document.images) {
    home_on = new Image;
    home_off = new Image; 
    home_on.src = "/images/homeGlow.gif";
    home_off.src = "/images/home.gif";
  
    events_on = new Image;
    events_off = new Image;
    events_on.src = "/images/eventsGlow.gif";
    events_off.src = "/images/events.gif";
  
    features_on = new Image;
    features_off = new Image;
    features_on.src = "/images/featuresGlow.gif";
    features_off.src = "/images/features.gif";
    
    articles_on = new Image;
    articles_off = new Image;
    articles_on.src = "/images/articlesGlow.gif";
    articles_off.src = "/images/articles.gif";
    
    forums_on = new Image;
    forums_off = new Image;
    forums_on.src = "/images/forumsGlow.gif";
    forums_off.src = "/images/forums.gif";
  
    aboutUs_on = new Image;
    aboutUs_off = new Image;
    aboutUs_on.src = "/images/aboutUsGlow.gif";
    aboutUs_off.src = "/images/aboutUs.gif";
    
    store_on = new Image;
    store_off = new Image;
    store_on.src = "/images/storeGlow.gif";
    store_off.src = "/images/store.gif";  
  }
  
    
  function glowOn(image) {
    if (document.images) {
      document.images[image].src = eval(image + "_on.src");
    }
  }

  function glowOff(image) {
    if (document.images) {
      document.images[image].src = eval(image + "_off.src");
    }
  }

  //-->