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


$(document).ready(function(){
    $('td.assessment_form_comments textarea').autoResize({
	// onResize : function() {
	// },
	//animateCallback : function() {
	//},
	animateDuration : 150,
	animate: false,
	// extra pixels added to total height
	extraSpace : 0,
	// when textarea reaches this height it will stop expanding
	limit: 1000
    });
});
