$(document).ready(function(){
	
	$('.accordion_content').hide();
	$('.option2').hide();
	$('.option3').hide();
	$('.option4').hide();
	$('.option5').hide();
	$('.otherChoice').hide();
	
	
	$('#vaihto').hide();
	$("#thechoices").change(function(){
		$("#" + this.value).show().siblings().hide();
		$.cookie("selection", this.value);
	});
	
	$('#tyyppi').change(function(){
		if (this.value == 'Muu'){
			$('.otherChoice').show();
		}else{
			$('.otherChoice').hide();
		}
	});
	
	
	$('.accordion h3').click(function() {
		$(this).next('.accordion_content').slideToggle();
		return false;
	}).next().hide();	

	var counter = 2;
	var countend = 6;
	$('#tuote').click(function() {
		$('.option'+counter).show();
		
		counter++;
		if( counter == countend){
			$('#tuote').hide();
		}else{
			
		}
	});
	
	var counter = 2;
	var countend = 6;
	$('#maara').click(function() {
		$('.option'+counter).show();
		
		counter++;
		if( counter == countend){
			$('#maara').hide();
		}else{
			
		}
	});
	


	
	var formSelection = $.cookie("selection");
	$("#" + formSelection).show().siblings().hide();
	
});

