$(function(){	
	$("a.nbComments").hover(function(e){
		this.t = this.title;
		this.title = "";
		var tutu = $(this).parent().parent().attr('id').substr(5);
		$(this).parent().children('#tooltip-news').remove();
		$(this).parent().append('<img src="style/imgs/loader.gif" alt="" style="margin-left: 10px;" />').append('<p id="tooltip-news"></p>');
		
		$.ajax({
			type: "POST",
			url: "index.php",
			data: "news=" + $(this).parent().parent().attr('id').substr(5),
			cache: false,
			success: function(html){
				if (html != '') {
					$('#news-'+tutu+' p#tooltip-news').html(html);
					$("#tooltip-news")
						.css("background-color", "#E6E6E6")
						.css("margin", "0")
						.hide()
						.slideDown("slow", function () {$('#news-'+tutu+' p.data').children('img').fadeOut().remove();});
				}
			}
		});
		
    },
	function(){
		this.title = this.t;		
		$("#tooltip-news").slideUp('slow', function () {$(this).remove();} );
		$(this).parent().children('img').remove();
    });	
});
