$(document).ready(function() {
    $('#navigation > ul').each(function() {
        $(this).find('ul').hide();
        
        $(this).find('span').hover(function() {
            $(this).css('cursor', 'pointer');
        }, function() { 
            $(this).css('cursor', 'auto');
        });
        
        $(this).find('span').click(function() {
            if($(this).next().css('display') == 'block') {
                $('#navigation  ul  ul').hide();
            } else {
                $('#navigation  ul  ul').hide();
                $(this).next().show();
            }
        });
    });
    
    $('#keywordmeta').hide();
});