$(document).ready(function(){
	$("#rsvp_coming_false").add("label[for='rsvp_coming_false']").hover(
		function(){
			$(this).after("<p class='note'>Can't come? Don't worry; fill out the form anyway and we'll send you the presentation materials later!</p>");
		},
		function(){
			$(this).next().fadeOut();
		})
});