jQuery(function() {
	jQuery.getJSON("/ajax/header.php?get", function(data) {
		$("body").removeClass("summer");
		$("body").removeClass("city");
		$("body").removeClass("winter");
		$("body").addClass(data.scene);
	});
});
