/**
 * @author Daniel Ruccci <dan@rucci.org>
 */
// Prepare Options Object for the form
//url:        'http://rucci.org/drjj/index.php',
var options = {  
    url:        'send.php', 
    success:    function() { 
        $('#userFeedback').hide().html("Thanks for signing up!").show("slow");
		$('#signupForm').hide("slow");
    }
};

// pass options to ajaxForm 
$('#signupForm').ajaxForm(options); 
// attach handler to form's submit event 
$('#signupForm').submit(options);

