
var smenu= [
	["priests.html","priests"],
	["pastoral.html","pastoral staff"],
	["office.html","parish office"],
	["http://www.schoolspeak.com/schools/sjf/staff_s.html","parish school"],
	["re.html","faith formation"],
	["music.html","music dept"],
	["plant.html","facilities"]
	];
	
	
	 /** * Display Sub Menu dynamically
	 */
	   function showSM(){	
	   	var sm1=smenu.length-1;
	   	document.writeln('<p align="center">');
	   	for (var i=0; i<sm1; i++) 
					document.writeln('<a href="'+smenu[i][0]+'">' +smenu[i][1] + '</a> |');
		document.writeln('<a href="'+smenu[sm1][0]+'">' +smenu[sm1][1] + '</a></p>');
		}
