function menuGetPage() {
         strPage = new Array();

         //-- Start editing --
         strPage[0] = "/index.php?option=com_frontpage&Itemid=1";
         strPage[1] = "/forum";
         strPage[2] = "/index.php?option=com_content&task=blogsection&id=6";
		 strPage[3] = "/index.php?option=com_content&task=view&id=25&Itemid=39";
         strPage[4] = "/index.php?option=com_content&task=view&id=30&Itemid=45";
	     strPage[5] = "/index.php?option=com_content&task=view&id=27&Itemid=41";
         strPage[6] = "/index.php?option=com_content&task=view&id=26&Itemid=40";
         strPage[7] = "/index.php?option=com_content&task=view&id=28&Itemid=42";
		 strPage[8] = "/index.php?option=com_content&task=view&id=31&Itemid=48";
		 strPage[9] = "http://www.worldoflogs.com/guilds/94575/";
         //-- Stop editing --

         for (i=0; i<strPage.length; i++) {
            strUrl = new String(window.location);

            j = strUrl.lastIndexOf('/');
            if (j < 0) { j = 0; }
            strUrl = strUrl.substr(j,strUrl.length);

            intForum = 0;
            intForum = strUrl.search("com_smf");

            if (intForum > -1) {
               document.getElementById("menuItem1").style.backgroundImage = "url(templates/adtheme/images/menuhover.jpg)";
            } else {
               if (strPage[i] == strUrl) {
                  document.getElementById("menuItem"+i).style.backgroundImage = "url(templates/adtheme/images/menuhover.jpg)";
               }
            }
         }
      }
