$(document).ready(function(){
	
		$(".actualites .boxPageActus .news a").each(function(i){
			mySrc = $(this).children(".picture").children("img").attr('src').split('/');
			mySrc = '/'+mySrc[1]+'/thumbnails/'+mySrc[2];
			$(this).children(".picture").children("img").attr('src', mySrc);
			
			if (i != 0) {
				$(this).children('div.picture').remove();
				$(this).children().children('p').each(function(){
						$(this).remove();
				});	
			}
		});
		
		if ($('#main #news').length !=0) {
				$(".actualites .boxPageActus .news a").each(function(i){
					$(this).children().children('p').remove();
					$(this).children('div.picture').remove();
			});
		}

});
