$(document).ready(function(){

	$('.form-submit').live('click', function(e){
	
		e.preventDefault();
		
		$(this).closest('form').submit();
	});
});
