$(function() {
    
    // lightbox effects for image galleries
    
    $('a.lightbox').lightBox(); // Select all links with lightbox class
    
    // prospectus stuff
    
    $("#prospectus_menu > ul > li > span").click (
        function() {
            href = $(this).attr('id');
            $('html,body').animate({ scrollTop: $(href).offset().top }, { duration: 'slow', easing: 'swing'});
        }
    );
});
