/***********************************************************************************************************************
DOCUMENT: includes/javascript.js
DEVELOPED BY: Ryan Stemkoski
COMPANY: Zipline Interactive
EMAIL: ryan@gozipline.com
PHONE: 509-321-2849
DATE: 2/26/2009
DESCRIPTION: This is the JavaScript required to create the accordion style menu.  Requires jQuery library
************************************************************************************************************************/

$(document).ready(function() {

    /********************************************************************************************************************
    SIMPLE ACCORDIAN STYLE MENU FUNCTION
    ********************************************************************************************************************/
    $('div.accordionButton').click(function() {
        var show = false;
        if ($(this).next().is(":hidden")) {
            show = true;
        }
        //$('div.accordionContent').slideUp('normal');
        if (show) {
            $(this).next().show();
        } else {
            $(this).next().hide();
        }

        return false;
    });

    /********************************************************************************************************************
    CLOSES ALL DIVS ON PAGE LOAD
    ********************************************************************************************************************/
    $("div.accordionContent[rel!='OPEN']").hide();
    /********************************************************************************************************************
    OPEN ALL DIVS MARKED TO BE OPEN
    ********************************************************************************************************************/
    $("div.accordionContent[rel='OPEN']").show();
});

