jQuery(document).ready(function()
	{
		var a=2;
		diaporama(1);
		
		jQuery(".newHomeMiseenavant .bottom > a").each(function()
		{
			jQuery(this).mouseover(function()
			{
				a=parseInt(this.name)+1;
				if (a>5)
				a=1;
				diaporama(this.name);
			});
		});

		function diaporama(current)
		{
			/* on cache les div */
			jQuery(".newHomeMiseenavant .top > div").each(function()
			{
				jQuery('#'+this.id).hide();
			});
			
			/* on montre la div en cours */
			jQuery('#bloc'+current).show();
			
			/* on initiatlise les images des liens */
			var i=1;
			jQuery(".newHomeMiseenavant .bottom > a").each(function()
			{
				jQuery(this).removeClass('hoverLink');
				i++;
			});

			/* on allume le liens en cours */
			jQuery("#lien"+current).addClass('hoverLink');
		}
	});



