<!--
// TJK_hank() v1.7 Copyright (c) 2006 TJKDesign - Thierry Koblentz
// For help, visit http://www.tjkdesign.com/articles/navigation_links_and_current_location.asp
function subNav(zMenu,defaultPage){
if(defaultPage) {var strLocation=defaultPage;}
else {var strLocation = top.location.pathname;}
if (document.getElementById && document.createElement && document.getElementById(zMenu)){
	var a = document.getElementById(zMenu).getElementsByTagName("a");
		for (var x=0,i=a.length;x<i;x++){
			if (a[x].href.lastIndexOf("#")+1!=a[x].href.length){
				if (a[x].href.indexOf(strLocation,0)>0 || a[x].href == top.location.protocol + "//" + top.location.hostname + top.location.pathname){
					a[x].className += " "+"on";
				}
			}
		}
	}
}
//-->