homeMenu = {
    
    init: function() {
        $('#top li').click(function(e) {
            window.location = $(e.target).children('a').eq(0).attr('href')
        });
    }
}

homeMenu.init();