
jQuery(document).ready(function(){
						   
	jQuery('a.submit-form').click(function(){
		jQuery(this).closest('form').submit();
		return false;
	});
	
});