if (typeof thissection != "undefined") {
    $('.navigation ul').attr('style', 'display:none;');
    if (thissection == "home") {
        $('#home').attr('style', 'display:none;');
    } else {
        $('#' + thissection + ' ul').attr('style', 'display:block;');
    }
}