$(
    function() {
        $('#navigation li')
            .click(
                function() {
                    window.location = $(this).find('a').attr('href');
                    this.style.cursor = 'pointer';
                }
            )
    }
)
