/* Designed by: Minnow Web Design 
   http://www.minnowwebdesign.com
*/

function setTest() {alert('in set test');}
<!--javascript to higlight page-->
function extractPageName(hrefString)
	{
	        var arr = hrefString.split('/');
	        return  (arr.length<2) ? hrefString : arr[arr.length-2].toLowerCase() + arr[arr.length-1].toLowerCase();               
	}
	
	function setActiveMenu(arr, crtPage)
	{
	        for (var i=0; i<arr.length; i++)
	        {
//			alert(extractPageName(arr[i].href)+':'+crtPage);
//alert(extractPageName(arr[i].href));
//alert(crtPage);
	                if(extractPageName(arr[i].href) == crtPage)
	                {
//					alert('found a match');
	                        //if (arr[i].parentNode.tagName != "DIV")
	                        //{
									//arr[i].style.fontWeight = 'bold';
									arr[i].style.color="#0076a3";
									//arr[i].style.backgroundColor="#dfe4e1";
    								//arr[i].parentNode.style.fontWeight = 'bold';
	                                //arr[i].className = "current";
	                                //arr[i].parentNode.className = "current";
									//arr[i].id="boldLeftSidebar";
	                        //}
	                }
	        }
	}
	
	function setPage()
	{
//	alert('in set page');
	        hrefString = document.location.href ? document.location.href : document.location;
	
	        if (document.getElementById("menuText")!=null)
	                setActiveMenu(document.getElementById("menuText").getElementsByTagName("a"), extractPageName(hrefString));
	}
	

<!--end of javascript to higlight page-->	

