
jQuery(document).ready(function(){$('.notes').wrap('<div class="notes_wrapper"></div>');$('.notes').parent().prepend($.A({'href':'#','Class':'toggle_notes'},'These notes contain more course information [Show]'));$('.notes').hide();$('.toggle_notes').click(function(){txt=$(this).siblings('.notes');$(this).parent().find("a").text("These notes contain more course information ["+(txt.is(':visible')?'Show':'Hide')+"]");txt.slideToggle('fast');return false;});});