			

siteNav = function() {
			  
			  var loc = document.location.pathname;
			
			switch(loc) {
				case "/":   /*root (home)*/
					t = document.getElementById("home"); 
					t.style.backgroundColor ="#0FF";
					t = document.getElementById("contact"); 
					t.style.backgroundColor ="#BBB"; 
					
					t = document.getElementById("products"); 
					t.style.backgroundColor ="#BBB"; 
					
					t = document.getElementById("affiliate"); 
					t.style.backgroundColor ="#BBB"; 
					t = document.getElementById("partner"); 
					t.style.backgroundColor ="#BBB"; 
					t = document.getElementById("help"); 
					t.style.backgroundColor ="#BBB"; 
				
					break;
					
				case "/ContactPage.php":
				
					t = document.getElementById("home"); 
					t.style.backgroundColor ="#BBB";
				
					t = document.getElementById("contact"); 
					t.style.backgroundColor ="#0FF"; 
					
					t = document.getElementById("products"); 
					t.style.backgroundColor ="#BBB"; 
				
					t = document.getElementById("affiliate"); 
					t.style.backgroundColor ="#BBB"; 
					t = document.getElementById("partner"); 
					t.style.backgroundColor ="#BBB"; 
					t = document.getElementById("help"); 
					t.style.backgroundColor ="#BBB"; 
						
				
					break;
					
					
					
			case "/Partner.php":   
					t = document.getElementById("home"); 
					t.style.backgroundColor ="#BBB";
				
					t = document.getElementById("contact"); 
					t.style.backgroundColor ="#BBB"; 
					
					t = document.getElementById("products"); 
					t.style.backgroundColor ="#BBB"; 
				
					t = document.getElementById("affiliate"); 
					t.style.backgroundColor ="#BBB"; 
					t = document.getElementById("partner"); 
					t.style.backgroundColor ="#0FF"; 
					t = document.getElementById("help"); 
					t.style.backgroundColor ="#BBB"; 
									
					break;		
					
			case "/Help.php":   
					t = document.getElementById("home"); 
					t.style.backgroundColor ="#BBB";
				
					t = document.getElementById("contact"); 
					t.style.backgroundColor ="#BBB"; 
					
					t = document.getElementById("products"); 
					t.style.backgroundColor ="#BBB"; 
				
					t = document.getElementById("affiliate"); 
					t.style.backgroundColor ="#BBB"; 
					t = document.getElementById("partner"); 
					t.style.backgroundColor ="#BBB"; 
					t = document.getElementById("help"); 
					t.style.backgroundColor ="#0FF"; 
									
					break;							
					
			case "/TVUOverview.php":   
					t = document.getElementById("home"); 
					t.style.backgroundColor ="#BBB";
				
					t = document.getElementById("contact"); 
					t.style.backgroundColor ="#BBB"; 
					
					t = document.getElementById("products"); 
					t.style.backgroundColor ="#0FF"; 
				
					t = document.getElementById("affiliate"); 
					t.style.backgroundColor ="#BBB"; 
					t = document.getElementById("partner"); 
					t.style.backgroundColor ="#BBB"; 
					t = document.getElementById("help"); 
					t.style.backgroundColor ="#BBB"; 
					
					
			}
}
			
		if (window.addEventListener)
			window.addEventListener("load", siteNav, false);
		else if (window.attachEvent)
			window.attachEvent("onload", siteNav);
		else if (document.getElementById)
			window.onload=siteNav;

			
		
