$(document).ready( function() {
		// Disable Enter
		$("#form").keypress(function(e) {
									 if (e.which == 13) {
											return false;
										}
	      });
							
		// FOR SECTION C
		$("input[name='experience_level']").change(function(){
    		if ($("input[name='experience_level']:checked").val() == '1')	{
        		$("div#section_B").show();
				$("div#section_C").hide();
				$("div#section_D").hide();
			}
    		else if ($("input[name='experience_level']:checked").val() == '2')	{
				$("div#section_B").show();
				$("div#section_C").hide();
				$("div#section_D").hide();
			}
			else if ($("input[name='experience_level']:checked").val() == '3')	{
				$("div#section_C").show();
				$("div#section_B").hide();
				$("div#section_D").hide();
			}
			else if ($("input[name='experience_level']:checked").val() == '4')	{
				$("div#section_C").hide();
				$("div#section_B").hide();
				$("div#section_D").show();
			}
	    	else	{
    		    $("div#section_B").hide();
				$("div#section_C").hide();
				$("div#section_D").hide();
			}
		})
		
		// FOR SECTION B
		$("input[name='awareornot']").click(function()	{
			$("div#section_E").show();
		});
		
		// FOR SECTION C
		$("input[name='seeking_first']").change(function()	{
			if ($("input[name='seeking_first']:checked").val() == '2')	{
				$("div#section_E").show();
				$("div#question_8").hide();
			} else if($("input[name='seeking_first']:checked").val() == '1')	{
				$("div#question_8").show();
				$("div#section_E").hide();
			} else {
				$("div#section_E").hide();
				$("div#question_8").hide();
			}
		});
		
		$("input[name='role_importance']").click(function()	{
			$("div#section_E").show();
		});
		
		// FOR SECTION D
		$("input[name='first_job']").click(function()	{
			$("div#section_E").show();
		});
		
		// FOR SECTION E
		$("input[name='work_location']").click(function()	{
			$("div#finale").show();
		});
		
});