﻿
$(document).ready(function() {
    $('#nav>li>ul').hide();

    var loc = window.location.toString().split("/");
    var len = loc.length;
    var fullpath;
    if (len == 5) { //changed by S. stephan from len == 6
        fullpath = "../" + loc[len - 2] + '/' + loc[loc.length - 1];
    }
    if (len == 4) { //changed by S. stephan from len == 5
        fullpath = "../" + loc[len - 1];
    }
    
    $("a[href='" + [fullpath] + "']").parents("li").each(function() {
        $(this).addClass("active");
    });
    // alert(loc);
    $.cookie('the_cookie', fullpath); // set cookie
    $.cookie('the_cookie', fullpath, { expires: 7 });


});

$(function() {
var fullpath = $.cookie('the_cookie');
$("a[href='" + [fullpath] + "']").parents("li").addClass("active");
$("a[href='" + [fullpath] + "']").parents("li").nextAll("ul").slideUp();
$("a[href='" + [fullpath] + "']").parents("li").find("ul:first").slideDown(500);

});


