

$(document).ready(function(){

	$("form#form").submit(function(event){
		event.preventDefault();
		var action = $(this).attr('action');
		$.post(action,$(this).serialize(),function(response){
			$('div#info_msg').html(response.msg);
			$('div#info_msg').show();
			$('html, body').animate({scrollTop:100}, 'slow',function(){$("form#form").fadeOut()}); 
			
		},'json');
	});
});
