// This file contains the images for the menu bar.


// The images are in an un-ordered list for formatting purposes.

// To maintain XHTML Strict compliance, all double-quotes (") inside the document.write lines must
// be preceded by a NECESSARY backslash (\). Be careful and do not remove these slashes.

// To change an image, make sure the image is 70 px by 70px and saved to the images\menubar folder
// as menuimage_???.jpg (replace the ??? with the new image name). If the mouseover text has
// changed, change the text in the ALT tag, making sure to leave the \" at the beginning and end.

// The first line opens the un-ordered list.
    document.write("<ul>");

    // The next 10 lines are the images (in order from left to right).
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_aboutfrep.jpg\" width=\"70\" height=\"70\" alt=\"About FREP\" /></li>");
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_rsm.jpg\" width=\"70\" height=\"70\" alt=\"Resource Stewardship Monitoring\" /></li>");
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_frpa_values.jpg\" width=\"70\" height=\"70\" alt=\"FRPA Resource Values\" /></li>");
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_recognition.jpg\" width=\"70\" height=\"70\" alt=\"Recognition &amp; Awards\" /></li>");
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_indicators.jpg\" width=\"70\" height=\"70\" alt=\"Monitoring Indicators &amp; Protocols\" /></li>");
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_quality_management.jpg\" width=\"70\" height=\"70\" alt=\"Quality Management\" /></li>");
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_ims.jpg\" width=\"70\" height=\"70\" alt=\"Information Management System\" /></li>");
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_project_management.jpg\" width=\"70\" height=\"70\" alt=\"Program &amp; Project Management\" /></li>");
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_publications.jpg\" width=\"70\" height=\"70\" alt=\"Publications\" /></li>");
        document.write("<li><img src=\"/hfp/frep/site_images/menubar/menuimage_qanda.jpg\" width=\"70\" height=\"70\" alt=\"Q&amp;A/ Feedback\" /></li>");

    // The last image has a special class to remove the white border.
        document.write("<li class=\"last\"><img src=\"/hfp/frep/site_images/menubar/menuimage_search.jpg\" width=\"70\" height=\"70\" alt=\"Search\" /></li>");

// The last line closes the un-ordered list.
    document.write("</ul>");
