// JavaScript Document

	fixMozillaZIndex=true;
	_menuCloseDelay=500           // The time delay for menus to remain visible on mouse out
	_menuOpenDelay=150            // The time delay before menus open on mouse over
	_followSpeed=5                // Follow scrolling speed
	_followRate=40                // Follow scrolling Rate
	_subOffsetTop=10              // Sub menu top offset
	_subOffsetLeft=-10            // Sub menu left offset
	_scrollAmount=3               // Only needed for Netscape 4.x
	_scrollDelay=20               // Only needed for Netcsape 4.x

	with(menuStyle=new mm_style()){
	onbgcolor="#CCCCCC";
	oncolor="#000000";
	offbgcolor="#EEEEEE";
	offcolor="#333333";
	bordercolor="#2F6E8C";
	borderstyle="solid";
	borderwidth=1;
	separatorcolor="#666666";
	separatorsize="1";
	padding=4;
	fontsize="11px";
	fontstyle="normal";
	fontweight="normal";
	fontfamily="Verdana, Tahoma, Arial";
	pagecolor="#333333";
	pagebgcolor="#eeeeee";
	headercolor="#000000";
	headerbgcolor="#ffffff";
	subimage="arrow.gif";
	subimagepadding="1";
	overfilter="Fade(duration=0);Alpha(opacity=100);";
	outfilter="randomdissolve(duration=0)";
	position="absolute";
	menuwidth="100%";
	menualign="center"; 
	screenposition="center";
	}
	
	//output from page collection
	with(milonic=new menuname('menuAbout')){ 
		style=menuStyle; 
		overflow='scroll'; 	
		position="absolute";
		screenposition="center";
		top=5;
		//IE HACK FOR OFFSETTING MENU DISPLAY
		if (navigator.appName.indexOf("Microsoft")!=-1){
			winwidth = getWindowWidth();
			if(winwidth>1024){
				left=((winwidth-1024)/2)*-1;			
			}
		}
		aI('text=Overview;url=#'); 
		aI('text=People;url=#'); 
		aI('text=Facilities;url=#'); 
		aI('text=How to Participate;url=#'); 
		aI('text=Contact Us;url=#'); 
	}
	
	with(milonic=new menuname('menuResearch')){ 
		style=menuStyle; 
		overflow='scroll';
		position="absolute";
		top=5;
		//IE HACK FOR OFFSETTING MENU DISPLAY
		if (navigator.appName.indexOf("Microsoft")!=-1){
			winwidth = getWindowWidth();
			if(winwidth>1024){
				left=((winwidth-1024)/2)*-1;			
			}
		}
		aI('text=Research Overview;url=#'); 
		aI('text=Funding;url=#'); 
		aI('text=Publications;url=#'); 
		aI('text=Projects;url=#'); 
	}

//generate dhtml menus
drawMenus();
