// JavaScript Document
$(document).ready(function() {
	
	Shadowbox.init({players:['img','iframe']});					   
	
	$('.faqs dd').hide(); // Hide all DDs inside .faqs
		$('.faqs dt').hover(function(){$(this).addClass('hover')},function(){$(this).removeClass('hover')}).click(function(){ // Add class "hover" on dt when hover
		$(this).next().slideToggle('normal'); // Toggle dd when the respective dt is clicked
	});
	
	$('a[rel=externe]').attr('target','_blank'); 
	
	//COUNTDOWN
	$('#timer').countdown({until: new Date(2012, 9-1, 6)});
	
	//Liste Epreuves
	$("#liste_epreuve").CloudCarousel({			
			xPos: 200,
			yPos: 20,
			titleBox: $("#title-text"),
			autoRotate: 'yes',
			autoRotateDelay: 5500,
			bringToFront: 'false',
			minScale: .25,
			reflHeight:0,
			reflGap:0,
			xRadius:230
	});
});

function ShowContent(id) {
	$(".epreuve_content").hide();
	$("#epreuve_" + id).show();
}

