$(function() {
		
	$('#blogSuite').click(function(e){
		
		e.preventDefault();
		
		//alert($('#nextTopicNum').serialize());
		
		/* Sending the form fileds to submit.php: */
		$.post('site/blog_ajax/action_suite.php',$('#donneesBlog').serialize(),function(msg){
				//alert(msg);
				
				$(msg).hide().insertBefore('#nextTopicNum').slideDown();
				var newNextTopic	= Number($('#nextTopicNum').val()) + Number(4);
				
				
				$('#nextTopicNum').val(newNextTopic);
				
				
		},'html');

	});	
	
});
