function switch_glance_image(image_path) {
    $('#glance_image').fadeOut('fast', function() {
            $('#glance_image').attr('src', image_path);
            $('#glance_image').fadeIn('fast');
        });
}