var path = window.location.pathname;
var page = path.substring(path.lastIndexOf("index.html") + 1);
//alert(page);

function topnav(){
	if(page=="index.php" || page==""){
		document.getElementById("home").className = "active"
		document.getElementById("fhome").className = "active"
		}
		
	if(page=="youroption.html" || 
	   page=="debt_consolidation.html" ||
	   page=="credit_counselling.html" ||
	   page=="bankruptcy.html" ||
	   page=="do_nothing.html"
	   ){
		document.getElementById("youroption").className = "active"
		document.getElementById("fyouroption").className = "active"
		}
	
	if(page=="debt_settlement.html"
	   ){
		document.getElementById("solution").className = "active"
		document.getElementById("fsolution").className = "active"
		}
		
	if(page=="contact.html"
	   ){
		document.getElementById("company").className = "active"
		document.getElementById("fcompany").className = "active"
		}
		
	if(page=="privacy_settlement.html"
	   ){
		document.getElementById("privacy").className = "active"
		}
	
	if(page=="career.html"
	   ){
		document.getElementById("fcareer").className = "active"
		}
	
	}