/*
Greenworks Savings Survey Information Recording function.
*/

// init the $greenworks namespace. All functions should be part of this namespace
var $greenworks = window.$greenworks || {};  

// On page load
$(document).ready(function(){
	// Show only the first content page 		
	$(".savings_container").hide().fadeIn('slow');
	$(".savings_bottom").hide();
	
	
	$("input[name*='savings_survey']").click(function() {
		var pollSelection =  $(this).val();
		var dataString = 'pollSelection=' + pollSelection;

		// AJAX function to post survey selection to savings.php to store in external file
		$.ajax({
			type: "POST",
			url: "savings.php",
			data: dataString,
			success: function() {
					$(".savings_bottom_left").hide();
					$(".savings_bottom_right").hide();
					$(".savings_bottom").fadeIn('slow');				
				} 
		});    	
    	return false;
    });

});