$(function() {   
   
	$(".stealsoul").click(function() {  
	
	//$("#gateway").validate({ messages: { email: "you cant trick me.<br />a real email would be nice" }}); 
	var vaLidate = $("#gateway").validate().form({ messages: { email: "you cant trick me.<br />a real email would be nice" }}); 
	//var vaLidate = $("#gateway").validate.form(); 
	
	if ( vaLidate )
	{
		 var dataString = $('#gateway').serialize();
	     //alert (dataString);return false;
	     $.ajax({  
	      type: "POST",  
	      url: "/paintherpink/soulsucker.php",
	      data: dataString,  
	      success: function() {
	        $('.gatewayportal').html("<div id='message'></div>");  
	        $('#message').html("Why thank you.")  
	       .append("<br />Your soul is now mine. :)")  
	       .hide()  
	       .fadeIn(1500);  
	      }  
		 });
	}
	return false;
		
	}); 

});