$(document).ready(function() {
	
	$('ul#slideshow').animatedinnerfade({
		speed: 2000,
		timeout:  3000,
		type: 'sequence',
		containerwidth: '700px',
		containerheight: '200px',
		animationSpeed: 3000,
		animationtype: 'fade',
		controlBox: 'none',
		displayTitle: 'none'
	});
	
	$(".mentionslegales").hide();
	  
});

function toggleLegal() {
	$(".mentionslegales").slideToggle();
}

function Lang(CODE_PAYS) {
	$.ajax({
		type: "POST",
		url: SITE_PATH+"content/ajax/Ajax_Lang.php",
		data: "lang="+CODE_PAYS,
		success: function(data){
			document.location.reload(true);
		}
	});
}