﻿



(function($) {
  
    /* "Accordionize" Content zones */
    $(function() {
        $('.accordionize h3').addClass('close').click(function() {
            $(this).toggleClass('open').toggleClass('close');
            $(this).nextAll(':not(h3)').slideToggle('hide');
            return false;
        }).nextAll(':not(h3)').hide();
    });




})(jQuery);














