var path = window.location.pathname;

var page = path.substring(path.lastIndexOf("/") + 1);

//alert(page);



function topnav(){

	if(page=="index.html" || page==""){

		document.getElementById("home").className = "active"

		}

		

	if(page=="whydebtcareprocessing.html" ){

		document.getElementById("wo").className = "active"

		}

		

	if(page=="businessoportunities.html"){

		document.getElementById("bo").className = "active"

		}

		

	if(page=="support.html"){

		document.getElementById("support").className = "active"

		}

		

	if(page=="contact.html"){

		document.getElementById("contact").className = "active"

		}
	if(page=="leads.html"){

		document.getElementById("leads").className = "active"

		}
		

	}
