jQuery.noConflict();           
jQuery(function() {
	
	//jQuery(".FormSubmitButton").attr('value', 'Submit');

  jQuery(".FormSubmitButton").click(function() {
		var datastring ='';
		datastring = jQuery('#LeadForm form').serialize();
		jQuery('#LeadForm form').html("<p><img src='assets/images/loadingBall.gif' /></p>");		
		jQuery.ajax({
      type: "POST",
      url: "/assets/hubspot/process.php",
      data: datastring,
      success: function() {
        jQuery('#LeadForm form').hide()
        .fadeIn(1500, function() {
          jQuery('#LeadForm form').html("<p>Processed! Thank you for signing-up.</p>");
        });
      }
     });
    return false;
	});
});
