(function($){
	$(document).ready(function() {
            $('div.subsubmenu').hide();
         $('body').click(function(){
              $('.subsubmenu').fadeOut('fast');
            });
            
            $('#top_menu li:has(".subsubmenu")>a').click(function(event){
                event.preventDefault();
                event.stopPropagation();
                $(this).next(".subsubmenu").toggle();
            });
        });
})(jQuery);


