jQuery(function p4cardesign_send_to_friend() {
      
   jQuery(document).ready(function() {
      var options = {
         //target: '#debug',
         beforeSubmit: checkFormData,
         success: showResponse 
      };
      jQuery('#p4cardesign_send_to_friend').append('<input type="hidden" name="antispam" value="hehe" />');
      
      jQuery('#p4cardesign_send_to_friend').ajaxForm(options);

      function showResponse (responseText, statusText) {
         jQuery('#p4cardesign_send_to_friend_rotater').css('display','none');
         jQuery('#p4cardesign_send_to_friend_success').css('display','');
      }
      
      function checkFormData (formData, jqForm, options) {
         jQuery('#p4cardesign_send_to_friend').css('display','none');
         jQuery('#p4cardesign_send_to_friend_rotater').css('display','');
         return true;   
      }
   });
	
});

