	function showActiveLink(){
		
		pathArray = window.location.pathname.split("/");
		
		switch (pathArray[pathArray.length-1]){
			case "index.html":
			case "":
				//linkHome.className="activeLink";
				document.getElementById("linkHome").className="activeLink";
				break;
			case "aboutus.html":
				linkAboutUs.className="activeLink";
				break;
			case "remodeling.html":
			case "raboutremodeling.html":			
			case "rkitchens.html":			
			case "rlaundryrooms.html":			
			case "rbaths.html":						
			case "rclosets.html":						
			case "rhomeoffices.html":						
			case "rmediacenters.html":						
			case "rwallentcenters.html":						
			case "rwetbars.html":						
				linkRemodeling.className="activeLink";			
				break;
			case "gallery.html":
			case "gallerybaths.html":
			case "gallerycontkitchen.html":
			case "gallerytradkitchen.html":
				linkGallery.className="activeLink";					
				break;
			case "learningcenter.html":
			case "remodelingprocess.html":
			case "allaboutwood.html":
			case "cabinetcare.html":
				linkLearningCenter.className="activeLink";					
				break;
			case "news.html":
			case "homeshows.html":
			case "modelhomes.html":
				linkNews.className="activeLink";					
				break;
			case "contactus.html":
				linkContactUs.className="activeLink";					
				break;									
			
		}

	}