// JavaScript Document

function setCurrentPage()
{
	menuItems=["sedationdentistry.html", "pediatricdentistry.html", "cosmeticdentistry.html", "dentalimplants.html", "restorativedentistry.html", "invisalign.html", "zoom.html", "theteam.html","testimonials.html","contactus.html","financial.html"];
	var URL = unescape(location.href);	// get current URL in plain ASCII
	var xstart = URL.lastIndexOf("/") + 1;
	var xend = URL.length;
	var hereName = URL.substring(xstart,xend);
	var i=1;
	
	for (i = 0; i < menuItems.length;i++)
	{
		if (hereName == menuItems[i])
		{
			
			if (i>6) {
				liName = "topnavrt";
				//document.getElementById(liName).style.backgroundPosition='top center';
				//document.getElementById(liName).style.backgroundAttachment='fixed';
				if (i==7)
					url="url('./images/theteam_active.gif')";
				else if (i==8)
					url="url('./images/testimonial_active.gif')";
				else if (i==9)
					url="url('./images/contactus_active.gif')";
				else if (i==10)
					url="url('./images/financial_active.gif')";
				
				document.getElementById(liName).style.backgroundRepeat='no-repeat';
				document.getElementById(liName).style.backgroundImage=url;
			}else {
				
				var liName = "menu"+i;
				if (i == 1) {
					
					document.getElementById(liName).className = "activelikidszone";
				}else {
					//alert ('liName   ' + liName)
					
					document.getElementById(liName).className = "activeli";
					//document.getElementById('menu1').className = "inactivelikidszone";

				}
			}
		}
	}
}
