<!--
function checkMenu(strAddress){

	var objString = new String(strAddress)
	
	//Your Choices 
	if ((objString.indexOf("/contraceptives/the-pill.htm") >0) || (objString.indexOf("/contraceptive-choices/the-pill.htm") >0)){
		var myStyle = document.getElementById('item1').style;
 		 myStyle.background='#e73e97';
		 myStyle.color='#ffffff';
		 
	} else if ((objString.indexOf("/contraceptives/LARCs.htm") >0) || (objString.indexOf("/contraceptive-choices/LARCs.htm") >0)){
		var myStyle = document.getElementById('item2').style;
 		 myStyle.background='#e73e97';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/contraceptives/contraceptive-patch.htm") >0){
		var myStyle = document.getElementById('item3').style;
 		 myStyle.background='#e73e97';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/contraceptives/female-condom.htm") >0){
		var myStyle = document.getElementById('item4').style;
 		 myStyle.background='#e73e97';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/contraceptives/diaphragm.htm") >0){
		var myStyle = document.getElementById('item5').style;
 		 myStyle.background='#e73e97';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/contraceptives/condom.htm") >0){
		var myStyle = document.getElementById('item6').style;
 		 myStyle.background='#e73e97';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/contraceptives/natural-contraception.htm") >0){
		var myStyle = document.getElementById('item7').style;
 		 myStyle.background='#e73e97';
		 myStyle.color='#ffffff';	
		 
	// Your Questions
	
	} else if (objString.indexOf("/advice/contraception.htm") >0){
		var myStyle = document.getElementById('item1').style;
 		 myStyle.background='#e50278';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/advice/contraceptive-pill.htm") >0){
		var myStyle = document.getElementById('item2').style;
 		 myStyle.background='#e50278';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/advice/IUS-contraceptive.htm") >0){
		var myStyle = document.getElementById('item3').style;
 		 myStyle.background='#e50278';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/advice/IUD-contraceptive.htm") >0){
		var myStyle = document.getElementById('item4').style;
 		 myStyle.background='#e50278';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/advice/contraception-injection.htm") >0){
		var myStyle = document.getElementById('item5').style;
 		 myStyle.background='#e50278';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/advice/contraception-implant.htm") >0){
		var myStyle = document.getElementById('item6').style;
 		 myStyle.background='#e50278';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/advice/condoms.htm") >0){
		var myStyle = document.getElementById('item7').style;
 		 myStyle.background='#e50278';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/advice/diaphragms.htm") >0){
		var myStyle = document.getElementById('item8').style;
 		 myStyle.background='#e50278';
		 myStyle.color='#ffffff';	
		 
	} else if (objString.indexOf("/advice/contraception-patch.htm") >0){
		var myStyle = document.getElementById('item9').style;
 		 myStyle.background='#e50278';
		 myStyle.color='#ffffff';	
		 
	}
		
}

checkMenu(window.location);

//-->