	function funcGetElement() {

	var sPath = window.location.pathname;

	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

	tMenu='';
	if(sPage == 'index.shtml' || sPage=='')
	{
		tMenu = "class_a_1";
	}
	if(sPage == 'about-us.shtml')
	{
		tMenu = "class_a_2";
	}
	if(sPage == 'painting-service.shtml')
	{
		tMenu = "class_a_3";
	}
	if(sPage == 'gallery.shtml')
	{
		tMenu = "class_a_4";
	}
	if(sPage == 'testimonials.shtml')
	{
		tMenu = "class_a_5";
	}
	if(sPage == 'contact-us.shtml')
	{
		tMenu = "class_a_6";
	}	
	if(sPage == 'request-quote.shtml')
	{
		tMenu = "class_a_7";
	}
	for(i=1;i<=7;i++)
	{
		var newStr="class_a_"+i;

		if(newStr==tMenu)
		{
			document.getElementById(newStr).className ="active";
		}
		else
		{
			//if(i==9)
			//	document.getElementById(newStr).className = "bgnone";
			//else
				document.getElementById(newStr).className="";

		}
	}


}
