$(document).ready(function() {
	
	// hide eflyer loading animation
	
	jQuery("#eflyer-loading").hide();
	
	// form submitting
	
	jQuery('.button-eflyer').click(function(e) {
		e.preventDefault(); // stop the link from working
		jQuery("#eflyer-form").submit();
		jQuery("#eflyer-loading").fadeIn('slow');
	return false;
	});
	
	// eflyer callback
	
	jQuery('#eflyer-form').ajaxForm(function(data) { 
	
		if (data==1){ 
			jqalert('Cool. You are now signed up to receive our weekly listings email.');
			jQuery("#eflyer-loading").hide();
		} 
		else if (data==2){ 
			jqalert('Sorry, there was a problem. Perhaps you are signed up already?');
			jQuery("#eflyer-loading").hide();
		}
		else if (data==3){ 
			jqalert('Hey now, you have to type your email address in the box if you want to signup!');
			jQuery("#eflyer-loading").hide();
		}
	
	});
	
});

function nextPage()
{

	for (var i=0; i < document.gifted.type.length; i++)
   {
   if (document.gifted.type[i].checked)
      {
      var rad_val = document.gifted.type[i].value;
      }
   }
  
  
  document.location='/fabricfirst/gift/purchase/'+rad_val;
}


