	$(document).ready(function(){
	
	// LANDSCAPING CUSTOMER CARE FORM
	
	// When page loads hide all child divs in parent div#method
	$('#method div').hide();
	// When radio button is selected
	$("span input[type=radio]").click(function(){
	// Set variable divClass to the value of the class attribute of the radio button
	var divClass = $(this).attr("class");
	// Hide all child divs in parent div#method
	$('#method div').hide();
	// Show div with id of variable divClass
	$("#" + divClass).show();
	// Set value of cookie 'state' to the value of variable divClass
	$.cookie('state',divClass);
	});
	
	var state = $.cookie('state');
			
	if (!state) {
	$('#method div').hide();
	$('#showEmail').show();
	};
	
	if (state == 'showEmail') {
	$('#method div').hide();
	$('#showEmail').show();
	};
	
	if (state == 'showDaytime') {
	$('#method div').hide();
	$('#showDaytime').show();
	};
	
	if (state == 'showMobile') {
	$('#method div').hide();
	$('#showMobile').show();
	};
	
							   });