function getCarouselItemContent(item)
{
	$('#carousel_content_bg').html('<div id="carousel_loading">chargement...</div>');
	$.get('ajax-get-carousel-items.php', {'id':item}, function(data)
	{ 
		$('#carousel_content_bg').html(data);
	}, 'html');
}