$(document).ready(function() {
	// do something here
	$('input#servicedate').datePicker({startDate:'01/01/2007'});
	$.datePicker.setDateFormat('mdy','/'); 
	$("#supportfeedbackcheck").removeAttr ('checked');
	
	$("input#supportfeedbackcheck").click(function(){
			$("#rapidcontactcheck").removeAttr ('checked');
   			$("#rapidcontact").hide();
			$("#feedbackform").show();
	});

	$("input#rapidcontactcheck").click(function(){
		$("#supportfeedbackcheck").removeAttr ('checked');
		$("#feedbackform").hide();
		$("#rapidcontact").show();
	});
	
	
	
});
