
$(document).ready(function() {
    $('#nav li')
        .each(function() {
            var l = $(this).children('a').eq(0).attr('href');
            $(this)
                .css('cursor', 'pointer')
                .click(function() {
                    document.location = l;
                });
        });
});