
$(document).ready(function(){
	
	
	$("input[name='contact']").click( function() {
		
			var checkVal = $("input[name='contact']:checked").val();			
			if(checkVal == 'yes') {
				$("#email-area").show('fast');
			} else {
				$("#email-area").hide('fast');
			}
		}
			
	);
	
	$("#section-links").css("display","block");


						   
});