/*
 * Require jQuery JavaScript Library v1.3.2+
 * http://jquery.com/
 *
 * Copyright © 2011 MBA Multimédia (www.mba-multimedia.com)
 * 
 *
 */

$(function(){
	$('.load_more').live("click",function() {

		var last_msg_id = $(this).attr("id");
		var emp = document.getElementById("emp").value;

		if(last_msg_id!='end'){
		  $.ajax({
			type: "POST",
			url: "actualites_ajax_more.php",
			data: "lastmsg="+ last_msg_id+"&emp="+emp, 
			beforeSend:  function() {
				$('a.load_more').parent().append('<img src="facebook_style_loader.gif" />');
		  
			},
			success: function(html){
				$("#btn-plus-actualites").remove();
				$("ul#updates").append(html);
				$("li."+last_msg_id).hide();
				$("li."+last_msg_id).fadeIn(1500);
				//$('html,body').animate({scrollTop: $("li.element:last").offset().top},'slow');
			}
		  });
		}

	return false;

	});
});
