function highlight_menu() {
	var txt_url = window.location.href;
	
	if (txt_url.match("default.asp")!=null) {
		document.getElementById("button1").innerHTML = '<span class="NavBar" style="color: #56c760">מבוא</span>';
	} else if (txt_url.match("how.htm")!=null) {
		document.getElementById("button2").innerHTML = '<span class="NavBar" style="color: #56c760">איך זה עובד?</span>';
	} else if (txt_url.match("doessizematter.htm")!=null) {
		document.getElementById("button3").innerHTML = '<span class="NavBar" style="color: #56c760">האם הגודל באמת קובע?</span>';
	} else if (txt_url.match("results.htm")!=null) {
		document.getElementById("button4").innerHTML = '<span class="NavBar" style="color: #56c760">התוצאות</span>';
	} else if (txt_url.match("success.htm")!=null) {
		document.getElementById("button5").innerHTML = '<span class="NavBar" style="color: #56c760">סיפורי הצלחה</span>';
	} else if (txt_url.match("faq.htm")!=null) {
		document.getElementById("button6").innerHTML = '<span class="NavBar" style="color: #56c760">שאלות ותשובות</span>';
	} else if (txt_url.match("order.asp")!=null) {
		// is in constant golden color, no need for special highlighting
		document.getElementById("button7").innerHTML = '<span class="NavBar" style="color: gold;">להצטרפות</span>';
		
	// from here the buttons are images not text...
	} else if (txt_url.match("medical.htm")!=null) {
		document.getElementById("button8").innerHTML = '<div class="mininav1" style="cursor: default; background-position: 0 22;">&nbsp;</div>';
	} else if (txt_url.match("ripoffs.htm")!=null) {
		document.getElementById("button9").innerHTML = '<div class="mininav2" style="cursor: default; background-position: 0 22;">&nbsp;</div>';
	} else if (txt_url.match("guarantee.htm")!=null) {
		document.getElementById("button10").innerHTML = '<div class="mininav3" style="cursor: default; background-position: 0 22;">&nbsp;</div>';
	} else if (txt_url.match("about.htm")!=null) {
		document.getElementById("button11").innerHTML = '<div class="mininav4" style="cursor: default; background-position: 0 22;">&nbsp;</div>';
	} else if (txt_url.match("contact.htm")!=null) {
		document.getElementById("button12").innerHTML = '<div class="mininav5" style="cursor: default; background-position: 0 22;">&nbsp;</div>';
	}
	// last button links away to login page.
}
