﻿function LoadNumberOfAttendees() {
	$.ajax({
		type: "POST",
		url: "/WebServices/RSVP.asmx/GetRSVPAttendees",
		data: "{}",
		contentType: "application/json; charset=utf-8",
		dataType: "json",
		success: function(msg) {
			$('#rsvpcount').text(msg.d);
			//setTimeout(LoadNumberOfAttendees, 20 * 1000);
		},
		error: function(XMLHttpRequest, textStatus, errorThrown) {
			alert('error');
		}
	});
}

$(document).ready(function() { LoadNumberOfAttendees(); });
