$(document).ready(function() {


	$("#Social_Media_Other_Div").css({'display':'none'});
	$("#Which_Social_Media_Sites_Other").attr('checked', false);
	$("#Recognition_Other_Div").css({'display':'none'});
	$("#Recognition_Other").attr('checked', false);
	
	$("#Which_Social_Media_Sites_Other").click(function() {
		$("#Social_Media_Other_Div").slideToggle('fast');
	});

	$("#Recognition_Other").click(function() {
		$("#Recognition_Other_Div").slideToggle('fast');
	});
	
	$("#Social_Media_Other_Text").bind('click', function(event) {
		$(this).val("");
		$(this).unbind(event);

	});
	$("#Recognition_Other_Text").bind('click', function(event) {
		$(this).val("");
		$(this).unbind(event);

	});
	

}); 
