jQuery(document).ready(function() {
    $('.sidemenu ul > li a').click(function(event) {

        if ($(this).parent().find('ul').length == '0') {
            $(this).parent().css({ backgroundImage: 'none' });
        }
        else if ($(this).hasClass('expandable') == true) {
            event.preventDefault();
            if ($(this).parent().parent().parent('.subNavigationBody').length > 0) {
                $(this).parent().parent().children('li').removeClass('selected');
                $(this).parent().parent().children('li').children('div, ul').addClass('hide');
            }
            else if ($(this).parent().parent().children('.selected').length > 0) {
                $(this).parent().parent().children('.selected').removeClass('selected');
            }

            if ($(this).parent().hasClass('selected')) {
                $(this).parent().removeClass('selected');
                $(this).parent().children('div, ul').addClass('hide');
            }
            else {
                $(this).parent().addClass('selected');
                $(this).parent().children('div, ul').removeClass('hide');
            }
        }

    });

});
