<!-- 
		
// first rollover

	FirstRoll = new Array()
	FirstRoll[0]= new Image(81,38)
	FirstRoll[0].src = "http://intra.ninds.nih.gov/images/faculty_off.gif"
	FirstRoll[1] = new Image(81,38)
	FirstRoll[1].src = "http://intra.ninds.nih.gov/images/faculty_on.gif"
	
	
	function FirstSwapOut() {		
		document.faculty.src = FirstRoll[1].src; return true;	
	}
	
	function FirstSwapBack() {		
		document.faculty.src = FirstRoll[0].src; return true;	
	}

// second rollover

	SecondRoll = new Array()
	SecondRoll[0] = new Image(77,38)
	SecondRoll[0].src = "http://intra.ninds.nih.gov/images/events_off.gif"
	SecondRoll[1] = new Image(77,38)
	SecondRoll[1].src = "http://intra.ninds.nih.gov/images/events_on.gif"
	
	
	function SecondSwapOut() {		
		document.events.src = SecondRoll[1].src; return true;	
	}
	
	function SecondSwapBack() {		
		document.events.src = SecondRoll[0].src; return true;	
	}
	
// third rollover

	ThirdRoll = new Array()
	ThirdRoll[0] = new Image(193,38)
	ThirdRoll[0].src = "http://intra.ninds.nih.gov/images/facilities_off.gif"
	ThirdRoll[1] = new Image(193,38)
	ThirdRoll[1].src = "http://intra.ninds.nih.gov/images/facilities_on.gif"
	
	
	function ThirdSwapOut() {		
		document.facilities.src = ThirdRoll[1].src; return true;	
	}
	
	function ThirdSwapBack() {		
		document.facilities.src = ThirdRoll[0].src; return true;	
	}	
	
// fourth rollover

	FourthRoll = new Array()
	FourthRoll[0] = new Image(85,38)
	FourthRoll[0].src = "http://intra.ninds.nih.gov/images/training_off.gif"
	FourthRoll[1] = new Image(85,38)
	FourthRoll[1].src = "http://intra.ninds.nih.gov/images/training_on.gif"
	
	
	function FourthSwapOut() {		
		document.training.src = FourthRoll[1].src; return true;	
	}
	
	function FourthSwapBack() {		
		document.training.src = FourthRoll[0].src; return true;	
	}	
		
	// fifth rollover

	FifthRoll = new Array()
	FifthRoll[0] = new Image(171,38)
	FifthRoll[0].src = "http://intra.ninds.nih.gov/images/diradmin_off.gif"
	FifthRoll[1] = new Image(171,38)
	FifthRoll[1].src = "http://intra.ninds.nih.gov/images/diradmin_on.gif"
	
	
	function FifthSwapOut() {		
		document.diradmin.src = FifthRoll[1].src; return true;	
	}
	
	function FifthSwapBack() {		
		document.diradmin.src = FifthRoll[0].src; return true;	
	}		
	
//-->