$(document).ready(function(){
		
		//Hide div w/id extra
	   $("#hallinto, #neuvonta").css("display","none");

		// Add onclick handler to checkbox w/id checkme
	   $("#hallintoCheck").click(function(){
		
		// If checked
		if ($("#hallintoCheck").is(":checked"))
		{
			//show the hidden div
			$("#hallinto").show("slow");
		}
		else
		{	   
			//otherwise, hide it 
			$("#hallinto").hide("slow");
		}
		
	  });
	   
	   // Add onclick handler to checkbox w/id checkme
	   $("#neuvontaCheck").click(function(){
		
		// If checked
		if ($("#neuvontaCheck").is(":checked"))
		{
			//show the hidden div
			$("#neuvonta").show("slow");
		}
		else
		{	   
			//otherwise, hide it 
			$("#neuvonta").hide("slow");
		}
										  });
	   
	   
	
		});
