jQuery(document).ready(function()
			{
						var a=1;
						diaporama(1);

						jQuery(".trendDiaporama2 > a.left").each(function()
						{
									jQuery(this).click(function()
									{
												a--
												if (a<1)
															a=3
												diaporama(a);

									});
						});

						jQuery(".trendDiaporama2 > a.right").each(function()
						{
									jQuery(this).click(function()
									{
												a++
												if (a>3)
															a=1
												diaporama(a);
									});
						});


						function diaporama(current)
						{
									/* on cache les div */
									jQuery(".trendDiaporama2 > div").each(function()
									{
												jQuery('#'+this.id).hide();
									});

									/* on montre la div en cours */
									jQuery('#blocDiaporama2'+current).fadeIn("slow");

						}
			});





