// JavaScript Document

function getTheboothPhoto(id){
	$("#loadingdiv_2").show();
	$.ajax({
		type: "POST",
		url: SITE_NAME+"reportages/getTheRandomImage/"+id,
		success: function(html){
				$("#actualitiest_photobooth").html(html);
					$("#loadingdiv_2").hide();
		}
	});
	
}
