<!--
if (document.images) {

	passage01_on = new Image();      
	passage01_on.src = "images/2002/01_on.gif"; 
	passage01_off = new Image();      
	passage01_off.src = "images/2002/01_off.gif";
	passage02_on = new Image();      
	passage02_on.src = "images/2002/02_on.gif"; 
	passage02_off = new Image();      
	passage02_off.src = "images/2002/02_off.gif";
}

	
// Function for activating topbar rollovers
function rolloverOn(imgName) {
		if (document.images) {
	  document[imgName].src = eval(imgName + "_on.src"); }
}
// Function for deactivating topbar rollovers
function rolloverOff(imgName) {
        if (document.images) {
	  document[imgName].src = eval(imgName + "_off.src"); }
}
//-->
