$(window).bind("load", function() {
	$("div#slider1").codaSlider()
});

$(document).ready(function() 
{
	$('.concours-inl').mouseover(function() {
		$(this).find('.ccr-more').hide();
		$(this).find('.ccr-details').show();
	}).mouseout(function() {
		$(this).find('.ccr-more').show();
		$(this).find('.ccr-details').hide();
	});
});