$(document).ready(function(){
	$('.index #activites a').bind('mouseenter', function(){
		cible=$(this);
		imageSurvol=cible.children('img').attr('src');
		reg=new RegExp("(vert)", "g");
		
		cible.css('background-image', 'url("'+imageSurvol.replace(reg, 'rouge')+'")')
		.children('img').css('left', -1000);
	})
	.bind('mouseleave', function(){
		cible=$(this);
		cible.css('background-image', 'none')
		.children('img').css('left', 0);
	});
	
	$('.galerie a').bind('click', function(){
		return false;
	})
	.bind('mouseenter', function(){
		$('#grde img').attr('src', $(this).attr('href'))
		.attr('alt', $(this).children('img').attr('alt'));
		$('#grde span').empty().html($(this).children('img').attr('alt'));
	});
	
	$('.galerie').each(function(){
		$('#grde').append('<span></span>');
		$('#grde span').html($('#grde img').attr('alt'));
	});
});
