/**
 * Ajax to support the drop a line form
 */

/* Callback not executing...
jQuery('#Form_DropALineForm').submit(function(){
	jQuery.post(this.getAttribute("action"),jQuery(this).serialize(),function(data,status,request){
		alert('here');
	if(data.result == 'success' || data.result == 'fail')
		showResponseMessage(data.message);
	else
		showResponseMessage('Oops... something went wrong');
	}, 'json');
	return false;
});
*/

jQuery(document).ready(function() {

	//jQuery('#Form_DropALineForm').initAjaxForm();
	
	jQuery('#Form_DropALineForm .Actions').append('<img src="/themes/deversus/images/deversus/ajax-loader.gif" alt="Loading" id="loading" style="display: none;" />');
	
		
	if ( jQuery("#loading").length > 0 )
	{
		jQuery("#loading").ajaxStart(function(){
			jQuery(this).show();
		});
		
		jQuery("#loading").ajaxComplete(function(){
			jQuery(this).hide();
		});

	}
 
// Standard jQuery footer
});