$(document).ready(function(){
						   
//Hide div w/id ContactHow and uncheck all checkboxes
	   $("#ContactHow").css("display","none");
	   $("#ContactMe").removeAttr("checked");
	   $("#DontContactMe").removeAttr("checked");
	   $("#ContactMeEmail").removeAttr("checked");
	   $("#ContactMePhone").removeAttr("checked");
	   
// Add onclick handler to checkbox w/id #ContactMe
	   $("#ContactMe").click(function(){
// If checked
		if ($("#ContactMe").is(":checked"))
		{
//show the hidden div
			$("#ContactHow").show("fast");
			$("#DontContactMe").removeAttr("checked");
		}
		else
		{
//otherwise, hide it
			$("#ContactHow").hide("fast");
			$("#ContactMe").removeAttr("checked");
		}
	  });
	  
	  	$("#DontContactMe").click(function(){
// If checked
		if ($("#DontContactMe").is(":checked"))
		{
//show the hidden div and uncheck other checkbox
			$("#ContactHow").hide("fast");
			$("#ContactMe").removeAttr("checked");
		}
	  });
	  
	  $("#ContactMeEmail").click(function(){
// If checked
		if ($("#ContactMeEmail").is(":checked"))
		{
//uncheck other checkbox
			$("#ContactMePhone").removeAttr("checked");
		}
	  });
	  
	  $("#ContactMePhone").click(function(){
// If checked
		if ($("#ContactMePhone").is(":checked"))
		{
//uncheck other checkbox
			$("#ContactMeEmail").removeAttr("checked");
		}
	  });
	   
	});
