html = "";
html += "<div id=\"maintanance-bar-wrapper\">";
html += "	<div id=\"maintanance-bar\">";
html += "		<div id=\"admin-button\"></div>";
html += "		<div id=\"title\">";
html += "			<span>Maintenance Mode</span>";
html += "			Purchasing is disabled. Please come back soon.";
html += "		</div>";
html += "	</div>";
html += "</div>";

$(document).ready(function() {
	$("body").append(html);
	$("body").css({"margin-top":"65px"});
	$("#admin-button").click(function() {
		window.open("http://manager.enstore.com/" + STORE_HANDLE);
	});
});
