﻿  function GetCurrentPage() {

    	        var TopNav = document.getElementById('TopNav');
    	        var Lis = TopNav.getElementsByTagName("li");

    	        var thisPage = location.href;

    	        for (var xi = 0; xi < Lis.length; xi++) {
    	            var lIThis = Lis[xi];
    	            if (lIThis.className != 'SecondLevel') {
    	                var anchors = lIThis.getElementsByTagName("a");
    	                for (var i = 0; i < anchors.length; i++) {
    	                    var anchor = anchors[i];
    	                    thisHREF = anchor.getAttribute("href");
    	                    if (thisPage.indexOf(thisHREF) > -1) {
    	                        if (thisHREF != '/default.aspx') {
    	                            lIThis.className = 'Current';
    	                        }
    	                    }
    	                }
    	            }
    	        }
    	    }