$(window).load(function() {
	manageShowroom();
});

function manageShowroom () {
	$.ajax ({
		type: "POST",
		url: "./includes/showroom.php",
		data: "",
		success: function(m) {
				if (m != "-1")
				{
					chgPhoto(m);
					i++;
					setTimeout ('manageShowroom()', 5000);
				}
			}
		});

}

function chgPhoto (msg) {
	$("#showroom").fadeOut("slow", function() {
		$("#showroom").empty();
		$("#showroom").append(msg);
		$("#showroom").fadeIn("slow");
	});
}
