function filter(type,max,page) {
	$(".soirees").html("").addClass("loading");
	$.ajax({
		type: "POST",
		url: SITE_PATH+"content/ajax/Ajax_Soirees.php",
		data: "type="+type+"&qsNbPerPage="+max+"&qsPage="+page,
		success: function(data){
			$(".soirees").html(data).removeClass("loading");
			Shadowbox.init();
		}
	});
}

$(document).ready(function() {
	$("#slideshow ul").animatedinnerfade({
		speed: 2000,
		timeout: 5000,
		type: "sequence",
		containerwidth: "155px",
		containerheight: "334px",
		animationSpeed: 5000,
		animationtype: "fade",
		controlBox: "none",
		displayTitle: "none"
	});
});