// JavaScript Document
// This function is good for subnavigation schemes within Dreamweaver templates
// It will remove text decoration from any page we are currently on 

function unlink() {
	
	if (document.getElementById){
		if (document.getElementById("subnav")){
			var subnav = document.getElementById("subnav");
			var subnavA = subnav.getElementsByTagName("a");
			for (var i = 0; i<subnavA.length; i ++){
				var url = subnavA[i];
				var href = url.getAttribute("href");
				//alert ("this location " + location.pathname);
				if (location.pathname.indexOf(href) != -1) {
					//alert ("this page " + href + "     " + location.pathname.indexOf(href) );
					url.style.textDecoration = "none";
				}
				
			}
			
		}
	}
	
}
