function bindRsvpFunctions(){
	$(".closersvp").bind('click',function(){
	$('.closersvp').parent().parent().hide('slow');
  });
$('#submit_rsvp').unbind('click');
$('#submit_rsvp').bind('click' , function(event){

if	($('#name_rsvp').val()== ''){
			$('#rsvpmessage').html('Please insert a name');
			$('#rsvpmessage').show('fast');
			return false;
				}
	else if(!validateEmail($('#email_rsvp').val())){
			$('#rsvpmessage').html('Please insert an email');
			$('#rsvpmessage').show('fast');
			return false;
		}
		else{
			$('#submit_rsvp').attr("disabled", "true"); 
			$('#bouncingball').show('fast'); 
			$.post('/rsvp/add',
		 	{name:$('#name_rsvp').val(),
		 	email: $('#email_rsvp').val()},
		function(data){
			$('#rsvpmessage').html(data);
			$('#submit_rsvp').attr("disabled", "false"); 
			$('#bouncingball').hide('slow'); 
			
		});
	  }
});
}