// When the DOM is ready...
$(function(){
	
	// Hide stuff with the JavaScript. If JS is disabled, the form will still be useable.
	// NOTE:
	// Sometimes using the .hide(); function isn't as ideal as it uses display: none; 
	// which has problems with some screen readers. Applying a CSS class to kick it off the
	// screen is usually prefered, but since we will be UNhiding these as well, this works.
	$(".step1, #company_name_wrap, #special_accommodations_wrap").hide();
	
	// Reset form elements back to default values on page load
	// ... don't want browser remembering values like checked checkboxes in this case
	$("#submit_button").attr("disabled",true);
	$("#num_attendees").val('Please Choose');
	$("#step_2 input[type=radio]").each(function(){
		this.checked = false;
	});
	$("#rock").each(function(){
		this.checked = false;
	});
	
	// Fade out steps 2 and 3 until ready
	$("#step_2, #step_3").css({ opacity: 0.3 });
	
	$.stepTwoComplete_one = "not complete";
	$.stepTwoComplete_two = "not complete"; 
		
	// When a dropdown selection is made
// 	$("#num_attendees").change(function() {
// 
// 		$(".name_wrap").slideUp().find("input").removeClass("active_name_field");
// 
//         var numAttendees = $("#num_attendees option:selected").text();
//                 
//         for ( i=1; i<=numAttendees; i++ ) {
//             $("#attendee_" + i + "_wrap").slideDown().find("input").addClass("active_name_field");
//         }
//                   
// 	});
	
	// Check completeness of fields quickly
	$(".name_input").keyup(function() {
	
		var all_complete = true;
				
		$(".active_name_field").each(function() {
			if ($(this).val() == '' ) {
				all_complete = false;
			};
		});
		
		if (all_complete) {
			$("#step_1")
				.animate({
					paddingBottom: 120
				})
				.css({
					"background-image": "url(images/check.png)",
					"background-position": "bottom center",
					"background-repeat": "no-repeat"
				});
			$("#step_2").css({
				opacity: 1
			});
			$("#step_2 legend").css({
				opacity: 1 // For dumb Internet Explorer
			});
		} else { // not complete
			$("#step_1")
				.animate({
					paddingBottom: 20
				})
				.css({
					"background-image": "none"
				});
		};
	});
	
	
	$("#weight").change(function() {
	
		var all_complete = true;
				
		$(".active_weight_field").each(function() {
			if ($(this).val() == '' ) {
				all_complete = false;
			};
		});
		
		if (all_complete) {
			$("#step_2")
				.animate({
					paddingBottom: 120
				})
				.css({
					"background-image": "url(images/check.png)",
					"background-position": "bottom center",
					"background-repeat": "no-repeat"
				});
			$("#step_3").css({
				opacity: 1
			});
			$("#step_3 legend").css({
				opacity: 1 // For dumb Internet Explorer
			});
		} else { // not complete
			$("#step_2")
				.animate({
					paddingBottom: 20
				})
				.css({
					"background-image": "none"
				});
		};
	});
	
	
	function stepTwoTest() {
		if (($.stepTwoComplete_one == "complete") && ($.stepTwoComplete_two == "complete")) {
			$("#step_2")
			.animate({
				paddingBottom: 120
			})
			.css({
				"background-image": "url(images/check.png)",
				"background-position": "bottom center",
				"background-repeat": "no-repeat"
			});
			$("#step_3").css({
				opacity: 1
			});
			$("#step_3 legend").css({
				opacity: 1 // For dumb Internet Explorer
			});
		}
	};
	
	$("#step_2 input[name=company_name_toggle_group]").click(function(){
		$.stepTwoComplete_one = "complete"; 
		if ($("#company_name_toggle_on:checked").val() == 'on') {
			$("#company_name_wrap").slideDown();
		} else {
			$("#company_name_wrap").slideUp();
		};
		stepTwoTest();
	});
	
	$("#step_2 input[name=special_accommodations_toggle]").click(function(){
		$.stepTwoComplete_two = "complete"; 
		if ($("#special_accommodations_toggle_on:checked").val() == 'on') {
			$("#special_accommodations_wrap").slideDown();
		} else {
			$("#special_accommodations_wrap").slideUp();
		};
		stepTwoTest();
	});
	
	$("#rock").click(function(){
		if (this.checked && $("#num_attendees option:selected").text() != 'Please Choose'
		  	&& $.stepTwoComplete_one == 'complete' && $.stepTwoComplete_two == 'complete') {
				$("#submit_button").attr("disabled",false);
			} else {
				$("#submit_button").attr("disabled",true);
		}
	});
	
});
