// JavaScript Document


/*
 * Read more text
 */




$(document).ready(function()
		{			
			$("div#question2a").hide();
			$("div#question2b").hide();
			$("div#question3").hide();
			$("div#question3other").hide();
			$("div#question4").hide();
			$("div#question4other").hide();
			$("div#submit").hide();
			$("input[id='student']").click(function()
				{
					$("div#question2a").hide();
					$("div#question3").hide();
					$("div#question4").hide();
					$("div#question2b").show();
					$("div#submit").hide();
				})
			$("input[id='teacher'],[id='business'],[id='partner']").click(function()
				{
					$("div#question2b").hide();
					$("div#question3").hide();
					$("div#question4").hide();
					$("div#question2a").show();
					$("div#submit").hide();
				})

			$("input[id='public'],[id='private'],[id='thirdsector'],[id='fivetoseven'],[id='seventoeleven'],[id='eleventofourteen'],[id='fourteentosixteen'],[id='sixteentotwentyfive'],[id='twentyfiveplus']").click(function()
				{
					$("div#question3").show();
				})
			
			
			$("input[id='radio'],[id='print'],[id='wordofmouth']").click(function()
				{
					$("div#question4").show();
					$("div#question3other").hide();
				})
			
			$("input[id='other']").click(function()
				{
					$("div#question3other").show();
					$("div#question4").show();
				})
			
			
			$("input[id='browsing'],[id='wrl'],[id='workexperience'],[id='cpd'],[id='stem'],[id='enterprise'],[id='yap'],[id='vinvolved'],[id='steptowork'],[id='latestnews']").click(function() 	
				{
				$("div#submit").show();
				});
			
			
			$("input[id='other2']").click(function() 
				{
				
					$("div#question4other").show();
					$("div#submit").show();
				});

			
	

});