function InitializeMenu()
{
	if (document.all && document.getElementById)
	{
		var navRoot = document.getElementById("navlist");
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName == "LI")
			{
				node.onmouseover=function()
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

function getPages(currPage,lastPage)
{
  var iCurrPage = parseInt(currPage);
  var iLastPage = parseInt(lastPage);
  var linkStr = location.href.replace(/Default.aspx\?Path=%2f/gi,"").replace(/http:\/\/www.h71.fo\//gi,"");
  var link = linkStr.split("&PageNum");

  if (lastPage > 1){
    for (i = 1; i <= lastPage; i++){
      if (i == iCurrPage || iCurrPage == 0)
        document.write("<b>[" + i + "]</b> ");
      else
        document.write("<a href=\"" + link[0] + "&PageNum=" + i + "\">" + i + "</a> ");
    }
  }
}

