$(function () {
    //Hide all menus
    $('#menu').find('.sub-menu').children('.sub-content').hide();
    
    //Show current menu
    if (typeof GET['p'] != 'undefined') {
    	var Menus = GET['p'].split('/');
    	var Tree = '';
    	$.each(Menus, function (i, Menu) {
            if (Tree != '') Tree += '-';
    	    Tree += Menu;
    	    
    		$('#menu').find('#' + Tree).children('.sub-content').show();
    		if (i == Menus.length - 2) $('#menu').find('#' + Tree).children('.sub-content').addClass('active');
    	});
    }
    
    //Add the expand/collapse function
    $('#menu').find('.sub-menu').children('.title').click(function () {
    	$(this).parent().parent().find('.sub-content').hide();
    	$(this).parent().children('.sub-content').addClass('active').toggle();
    }); 
});
