$(document).ready(function() {
    $("#navigation ul ul").each(function() {
        $(this).css("display", "none");
        $(this).parent().prepend('<a href="javascript:void(0)" class="cat_ind closed">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a>');
    });
    $("#navigation ul a.cat_ind").click(function() {
        if ($(this).hasClass('closed')) {
            $(this).removeClass('closed').addClass('open');
            $(this).parent().find('ul').css("display", "block");
        } else {
            $(this).removeClass('open').addClass('closed');
            $(this).parent().find('ul').css("display", "none");
        }
    });
});
