// JavaScript Document
$(document).ready(function() {						   
	$('.messageInput input[type="checkbox"]').click(function() {
		
			var getAlertId = $(this).val();
			var promptVal ='';
			if ($(this).is(':checked')){
				promptVal = '0';
			}
			else{
				promptVal = '1';
			}
			//alert(getAlertId);
			$.ajax({type: "POST",
				url:  'ajax-callback.asp',
				data: { 'ajaxapp'	: 'updateAlert',
						'prompt'	: promptVal,
						'alertId'   : getAlertId
						 },
				beforeSend: function() {
					
				},
				success: function(r) {
							
					
				},
				error: function() {
					alert('Problem updating. Please try again.');
				}
				
			});											 
	 });
	
	
						   
});
