/* 
    sMenu - Stylish Javascript Menu v1.0
    http://code.google.com/p/smenu-stylish-javascript-menu
     
    Document   : core.js
    Created on : Mar 5, 2011
    Author     : Michael D. Arps Jr.
    
    Copyright © 2011 Michael D. Arps Jr. All rights reserved.
    
    Licensed under the GNU General Public License (GPL) Version 2.
    
    All images included with the program are released under the 
    GNU General Public License (GPL) Version 2.

    See the license file (LICENSE.txt) included with the program or 
    http://www.gnu.org/licenses/gpl-2.0.txt for the license definition.
*/

$(document).ready(function()
{
    var menuItemsCfg =
    [
        {
            menuHeader: 
            {
                text: "Home",
                url: "index.jsp",
                select: false
            }
        },
        {
            menuHeader: 
            {
                text: "Products",
                url: ""
            },
            menuItems:
            [
    			{
    			    text: "Hurricane Search / WinGREP",
    			    url: "hsearch.jsp"
    			},
    			{
    			    text: "Hurricane Editor",
    			    url: "hedit.jsp"
    			}
            ]
        },
        {
            menuHeader: 
            {
                text: "Support",
                url: "support.jsp"
            },
            menuItems:
            [
                {
                    text: "Frequently Asked Questions",
                    url: "faqs.jsp"
                },
                {
                    text: "Downloads",
                    url: "download.jsp"
                },
                {
                    text: "Submit Bug Report",
                    url: "submitbug.jsp"
                }
            ]
        },
        {
            menuHeader: 
            {
                text: "Company",
                url: "about.jsp"
            },
            menuItems:
            [
                {
                    text: "Overview",
                    url: "about.jsp"
                },
                {
                    text: "Our Software",
                    url: "whygrep.jsp"
                },
                {
                    text: "Our Customers",
                    url: "customers.jsp"
                },
                {
                    text: "Customer Quotes",
                    url: "quotes.jsp"
                },
                {
                    text: "Contact Us",
                    url: "contact.jsp"
                }
            ]
        },
        {
            menuHeader: 
            {
                text: "Store",
                url: "purchase.jsp"
            }
        }
    ];
    
    SMenu.buildMenu(menuItemsCfg);
});
