var SFX = {
	slideshow: function (elm, image_dir) {

		$.get(
			window.location.protocol + "//" + window.location.hostname + "/ajax_dir_contents.php",
			{dir: image_dir},
			function (json) {

				if ( ! json || ! json.success) {
				
					alert(json.message);
				
				} else {
				
					$(elm).slideshow({
						images: json.data,
						time: 7500 // Miliseconds between transitions
					});

				}
			},
			"json"
		);
	}
};
