// latched navigation for the top navigation
$(function() {
    var path = location.pathname.substring(1);
    if (path) {
        $('#top-navigation a[@href$="' + path + '"]').attr('class', 'selected');
    }
});


// slide out menus for the main navigation
$(function() {

    var currentSection = $.cookie('section_cookie');

    if (currentSection) {
        $('#main-navigation dd:not("#' + currentSection + '")').hide();
    } else{
        $("#main-navigation dd:not(:first)").hide();
    }

    $("#main-navigation dt a").click(function() {
        $(this).parent().next().siblings('dd:visible').slideUp('slow');
        $(this).parent().next().slideToggle('slow');
        return false;
    });

    $("#main-navigation li a").click(function() {
        var nextSection = ($(this).parents('dd').attr('id'));
        $.cookie('section_cookie', nextSection, {expires: 7, path: '/'});
    });

});
