$(document).ready(function()
{
	var pos = 1;
	$('.accueil_containerActu').fadeTo(1, 0.6);
	$('.accueil_containerActu').children('.accueil_legend').height(0);
	$('#actu1').stop().fadeTo(1, 1);
	$('#actu1').width(453);
	$('#actu1').children('.accueil_legend').height(30);
	ombre();
	
	$('.accueil_containerActu').mouseover(function()
	{
		if($(this).attr('id').replace('actu','') != pos)
			$(this).stop().fadeTo(400,1);
	});
	
	$('.accueil_containerActu').mouseout(function()
	{
		if($(this).attr('id').replace('actu','') != pos)
			$(this).stop().fadeTo(400,0.6);
	});
	
	$('.accueil_containerActu').click(function()
	{
		if($(this).attr('id').replace('actu','') != pos)
		{
			$('#actu'+pos).stop().animate({ width: '60px' }, 400);
			$('#actu'+pos).children('.accueil_legend').animate({ height: '0px' },200);
			$('#actu'+pos).fadeTo(200, 0.6);
			$(this).stop().animate({ width: '453px' }, 400);
			$(this).children('.accueil_legend').animate({ height: '30px' },200);
			$(this).fadeTo(1, 1);
			pos = $(this).attr('id').replace('actu','');
			ombre();
		}
	});
	
	function ombre()
	{
		$('.accueil_containerActu').children('.accueil_ombreRight').hide();
		$('.accueil_containerActu').children('.accueil_ombreLeft').hide();
		$('.accueil_containerActu').each(function()
		{
			var id = $(this).attr('id').replace('actu', '');
			if(id != pos)
			{
				if(id<pos)
					$(this).children('.accueil_ombreRight').show();
				else
					$(this).children('.accueil_ombreLeft').show();	
			}
		});
	}
});
