$(document).ready(function () {
	var doError = function(){
		document.getElementById('you-might-also-like').style.display = "none";
		document.getElementById('mightAlsoCrisisModeTout').style.display = "block";
	}
	if(!showCrisisModeTouts){
		$.ajax({
			type: "GET",
			url: "/controllers/view_you-might-also-like?alias=" + theAttractionAlias,
			success: function(response){
				document.getElementById('you-might-also-like-loading-content').style.display = 'none';
				$("#you-might-also-like-inner").append(response);
			},
			error: doError
		});
	}else{
		doError();
	}
});