// This file contains the links for the top drop-down menu
// All links for javascript menus in the \"includes\" folder must be absolute (image and/or URL)

// The first line sets up the unordered list that holds the the links
    document.write("<ul id=\"frepmenu\">");

        // This line hold a main level menu item, this item appears on the page whether it has
        // sub-links or not. Indented on the page to ease in editing. Replace only the letters
        // URL with the link and the text you want to show on the menu

            document.write("<li><a href=\"http://www.mrfoundation.com/\">Home</a>");

            document.write("<li><a href=\"http://www.mrfoundation.com/services/index.html\">Our Services</a>");

                // This is the first line of a drop-down sub-menu. The #1 line opens the sub-menu
                // list. You must have a line #1 and a line #3 in EVERY sub-menu. You can have as
                // many line #2s as you need to hold sub-menu items. Replace URL for the link
                    /* 1 */ document.write("<ul>");
                    /* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/services/index.html\">The RamJack&reg; Solution</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/services/waterproofing.htm\">Waterproofing</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/services/bowed_wall.htm\">Bowed Wall Reinforcement</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/services/mariflex.htm\">Mar-flex Window Wells</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/services/structural_repair.htm\">Other Services</a></li>");
                    /* 3 */ document.write("</ul>");

        // This line closes a main level menu item. Make sure you have one of these lines for
        // EACH main level menu item in your menu
            document.write("</li>");

        // The next main and sub-menu item lines are without comment to keep files size small
            document.write("<li><a href=\"http://www.mrfoundation.com/resource_centre/ask.htm\">Ask The Expert</a>");
                    /* 1 */ document.write("<ul>");
                    /* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/resource_centre/causes.htm\">Causes of Foundation Failure</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/resource_centre/signs.htm\">Signs of Foundation Failure</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/resource_centre/maintenance.htm\">Maintenance &amp; Monitoring Program</a></li>");
					/* 3 */ document.write("</ul>");
            document.write("</li>");

            document.write("<li><a href=\"http://www.mrfoundation.com/project_gallery/index.html\">Photo/Project Gallery</a>");
			/* 1 */ document.write("<ul>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/project_gallery/main-feature-project.htm\">Feature Project</a></li>");
                    /* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/project_gallery/index.html\">Foundation Damage</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/project_gallery/main-marflex.htm\">Mar-flex Window Wells</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/project_gallery/main-ramjack.htm\">RamJack&reg; System</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/project_gallery/main-shoring.htm\">Wall &amp; Foundation Shoring</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/project_gallery/main-waterproofing.htm\">Waterproofing</a></li>");
					/* 3 */ document.write("</ul>");
            document.write("</li>");

            document.write("<li><a href=\"http://www.mrfoundation.com/faqs/index.html\">FAQs</a>");
            document.write("</li>");

			// This main menu item does not have a sub-menu
            document.write("<li class=\"last\"><a href=\"http://creativate.ca/mrfoundation/index.php\">Contact Us</a>");
                    /* 1 */ document.write("<ul>");
					/* 2 */ document.write("<li><a href=\"http://creativate.ca/mrfoundation/index.php\">Request a Quote</a></li>");
					/* 2 */ document.write("<li><a href=\"http://www.mrfoundation.com/contact/emp_opps.html\">Employment Opportunities</a></li>");
                    /* 3 */ document.write("</ul>");
            document.write("</li>");

// The last line closes the list that holds the links
    document.write("</ul>");
