$(document).ready(function() {
	
	// Callback
	$('#sub_form').submit(function() {
		$(this).children('div').load('index.php #sub_form_msg *', $(this).serialize(), function(){
			$(this).effect('pulsate',{times:2},500);
		});
		return false;
	});
	
});
