$(function(){
	$(".news_titre").each(function(){
		t=0;
		l=0;
		c=$(this).html();
		$(this).html("");
		$(this).prepend("<div class='news_titre_shadow' style='top: "+t+"px; left: "+l+"px; color: #0F0F19;'>"+c+"</div>")
		.prepend("<div class='news_titre_shadow' style='top: "+(t-1)+"px; left: "+(l-1)+"px;'>"+c+"</div>")
		.prepend("<div class='news_titre_shadow' style='top: "+(t-1)+"px; left: "+(l+1)+"px;'>"+c+"</div>")
		.prepend("<div class='news_titre_shadow' style='top: "+(t+1)+"px; left: "+(l-1)+"px;'>"+c+"</div>")
		.prepend("<div class='news_titre_shadow' style='top: "+(t+1)+"px; left: "+(l+1)+"px;'>"+c+"</div>")
	});
});