$(function () {
    // Indicate the current page in the navigation bar (if a link exists there).
    $(".navigation li a").each(function() {
        if(this.href == window.location) $(this).addClass("current");
    });

    // Slideshow
    $("#slider").easySlider({
        auto: true,
        continuous: true,
        numeric: false,
        pause: 4000
    });
});

