 $(document).ready(function(){

	//fadeOut div w/id extra

	    $("#table1").css("display","none");

	    $("#table2").css("display","none");

	    $("#table3").css("display","none");		

	    $("#planhoursbox").css("display","none");		

	    $("#singlesessionbox").css("display","none");	
		
	    $("#desiredlocation").css("display","none");
		
		 $("#coursehs").css("display","none");	
		  $("#coursegu").css("display","none");	
		   $("#courseug").css("display","none");	

// Add onclick handler to checkbox w/id checkme

	   $("#inpersontraining").click(function(){

		if ($("#inpersontraining").is(":checked"))

		{
			$("#planhoursbox").fadeIn("fast");

			$("#singlesessionbox").fadeIn("fast");

			$("#desiredlocation").fadeIn("fast");


			$("#desiredlocationtable").fadeIn("fast");


			$("#table1").fadeIn("fast");
			$("#table2").fadeOut("fast");

			$("#table3").fadeOut("fast");	
		
		}else  if ($("#onlinetraining").is(":checked")){	   

			//otherwise, fadeOut it 

			$("#planhoursbox").fadeIn("fast");

			$("#singlesessionbox").fadeIn("fast");		

			$("#desiredlocation").fadeOut("fast");

		}else  if ($("#entrancetraining").is(":checked")){	   

			//otherwise, fadeOut it 

			$("#planhoursbox").fadeIn("fast");

			$("#singlesessionbox").fadeIn("fast");
			
			$("#desiredlocation").fadeOut("fast");		
			
			$("#table3").fadeIn("fast");

			$("#table1").fadeOut("fast");

			$("#table2").fadeOut("fast");	
		
			

		}

		

	  });

	   



	   $("#onlinetraining").click(function(){

		

		// If checked

		if ($("#onlinetraining").is(":checked"))

		{

			//fadeIn the hidden table

			$("#table2").fadeIn("fast");			$("#planhoursbox").fadeIn("fast");

			$("#singlesessionbox").fadeIn("fast");	

			$("#table1").fadeOut("fast");

			$("#table3").fadeOut("fast");		
			

			$("#desiredlocation").fadeOut("fast");		
		}

		else  if ($("#inpersontraining").is(":checked"))

		{	   

			//otherwise, fadeOut it 

			

			$("#table1").fadeIn("fast");			$("#planhoursbox").fadeIn("fast");

			$("#singlesessionbox").fadeIn("fast");	

			$("#table2").fadeOut("fast");

			$("#table3").fadeOut("fast");	

						$("#desiredlocation").fadeIn("fast");		

		}

		else  if ($("#entrancetraining").is(":checked"))

		{	   

			//otherwise, fadeOut it 

			

			$("#table3").fadeIn("fast");			$("#planhoursbox").fadeIn("fast");

			$("#singlesessionbox").fadeIn("fast");	

			$("#table1").fadeOut("fast");

			$("#table2").fadeOut("fast");	

						$("#desiredlocation").fadeOut("fast");		

		}

		

	  });





	   $("#entrancetraining").click(function(){

		

		// If checked

		if ($("#entrancetraining").is(":checked"))

		{

			//fadeIn the hidden table

			$("#table3").fadeIn("fast");			$("#planhoursbox").fadeIn("fast");

			$("#singlesessionbox").fadeIn("fast");	

			$("#table1").fadeOut("fast");

			$("#table2").fadeOut("fast");			
			
			$("#desiredlocation").fadeOut("fast");		
		}

		else  if ($("#inpersontraining").is(":checked"))

		{	   

			//otherwise, fadeOut it 

			

			$("#table1").fadeIn("fast");			$("#planhoursbox").fadeIn("fast");

			$("#singlesessionbox").fadeIn("fast");	

			$("#table2").fadeOut("fast");

			$("#table3").fadeOut("fast");	

						$("#desiredlocation").fadeIn("fast");		

		}

		else  if ($("#onlinetraining").is(":checked"))

		{	   

			//otherwise, fadeOut it 

			

			$("#table2").fadeIn("fast");			$("#planhoursbox").fadeIn("fast");

			$("#singlesessionbox").fadeIn("fast");	

			$("#table1").fadeOut("fast");

			$("#table3").fadeOut("fast");	
			$("#desiredlocation").fadeOut("fast");		
			

		}

		

	  });





	   $("#plan").click(function(){

		

		// If checked

		if ($("#plan").is(":checked"))

		{

			//fadeIn the hidden table

			$("#totalhours").fadeIn("fast");
			$("#totalhours2").val("");
			$("#singlesession").fadeOut("fast");
			
			if ($("#inpersontraining").is(":checked")){
			
			$("#table1").fadeIn("fast");
			$("#table2").fadeOut("fast");

			$("#table3").fadeOut("fast");			
			}else if ($("#onlinetraining").is(":checked")){
				$("#table1").fadeOut("fast");
				$("#table2").fadeIn("fast");

				$("#table3").fadeOut("fast");
				
				}else if ($("#entrancetraining").is(":checked")){
				$("#table1").fadeOut("fast");
				$("#table2").fadeIn("fast");

				$("#table3").fadeOut("fast");
				
				}

		}

		else  if ($("#session").is(":checked"))

		{	   

			//otherwise, fadeOut it 

			$("#totalhours").fadeOut("fast");

			

		}

	  });

	   

	  $("#session").click(function(){

	  if ($("#session").is(":checked"))

		{

			//fadeIn the hidden table

			$("#singlesession").fadeIn("fast");

			$("#totalhours").fadeOut("fast");
			$("#table1").fadeOut("fast");
				$("#table2").fadeOut("fast");

				$("#table3").fadeOut("fast");
			

		}

		else

		{	   

			//otherwise, fadeOut it 

			

			$("#singlesession").fadeOut("fast");

		}

	  });
//desire course table
 $("#hs").click(function(){

		if ($("#hs").is(":checked"))

		{
			$("#coursehs").fadeIn("fast");
			$("#coursegu").fadeOut("fast");
			$("#courseug").fadeOut("fast");
		}
		});
 $("#gu").click(function(){

		if ($("#gu").is(":checked"))

		{
			$("#coursehs").fadeOut("fast");
			$("#coursegu").fadeIn("fast");
			$("#courseug").fadeOut("fast");
		}
		});
 $("#ug").click(function(){

		if ($("#ug").is(":checked"))

		{
			$("#coursehs").fadeOut("fast");
			$("#coursegu").fadeOut("fast");
			$("#courseug").fadeIn("fast");
		}
		});

});



