<!--

day = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
month = new Array("Jan.", "Feb.", "Mar.", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec.");

now = new Date;

/* BROWSER TEST- Unfortunately the site doesn't work well with Net. 4.0 Stupid layer DOM browser! Anyways, if the browser doesn't support the magnificent getElementById method, it's going to get my scolding letter and be redirected from there to the original site. Yes, this is incredibly unprofessional of me. But I am not a professional :P */

function browsertest(){
	if (!document.getElementById)
		window.self.location = "oldbrowser.html";
}


/* DROP DOWN MENU CODE - HEHE have fun with this one. EXTREMELY inefficient coding on my part. But hey, it gets the job done right? And I am only a amateur at Javascript! Frankly, I can't believe that it even works :P Written by Christine Tieu, March 2002, with the help of Webmonkey.com. Hey I gotta give meself a little credit here right? */

stdbrowser = (document.getElementById) ? true : false;

function dropMenu(subMenu, off){

	if (document.layers){
		moreMenu = document.layers[subMenu];
		if (off == 0){
			moreMenu.visibility = 'show';
		}else if (off == 1){
			if (moreMenu.visibility == 'show'){
				moreMenu.visibility = 'hide';
			}else{
				moreMenu.visibility = 'show';
			}

		}
	}else if (document.getElementById){
		moreMenu = document.getElementById(subMenu).style;
		// now check to see which div tag is calling it
		if (off == 0){
			moreMenu.visibility = 'visible';
		}else{
			if (moreMenu.visibility == 'visible'){
				moreMenu.visibility = 'hidden';
			}else{
				moreMenu.visibility = 'visible';
			}
		}
	} 
			
}	

// background color change for links in the submenus
function linkchange(link, colornum, image){
	if (colornum == 0){
		link.style.backgroundColor = "#91CAFA";
	}else if (colornum == 1){
		link.style.backgroundColor = "#FFFFFF";
	}else{
		link.style.backgroundColor = colornum;
	}
}
	


// drop a menu within the drop-down menu!
function clickmenu(menuitem){

	if (document.layers){
		window.self.location = menuitem + ".html";

	}else if (document.getElementById) {
		thismenu=document.getElementById(menuitem).style
		if (thismenu.display == "block") {
			thismenu.display = "none"
		}else{
			thismenu.display = "block"
		}
	
	}
}

-->
