	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 == 'application-process.shtml')
	{
		tMenu = "class_a_2";
	}

	if(sPage == 'roses.shtml')
	{
		tMenu = "class_a_3";
	}

	if(sPage == 'event-listings.shtml')
	{
		tMenu = "class_a_4";
	}

	if(sPage == 'community.shtml')
	{
		tMenu = "class_a_5";
	}

	if(sPage == 'history.shtml')
	{
		tMenu = "class_a_6";
	}

	if(sPage == 'multimedia.shtml')
	{
		tMenu = "class_a_7";
	}

	if(sPage == 'contact.shtml')
	{
		tMenu = "class_a_8";
	}

	if(sPage == 'contact.shtml')
	{
		tMenu = "class_a_9";
	}
	//alert(tMenu);

	for(i=1;i<=8;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="";
		}
	}


}

