﻿$(function () {

	var location = parent.document.URL;
	var isWorkstation = location.indexOf("vworkstation");
	var isLocalhost = location.indexOf("localhost");
	var isStaging = location.indexOf("stag");
	//var isProductionSite = location.indexOf("fromhisheart.org");

	if ((isWorkstation > -1) || (isLocalhost > -1)) {
		set_div("Local Host Version");
	} else if (isStaging > -1) {
		set_div("STAGING Version");
} 
//    else {
//		set_notice("Welcome to the new <span style=\"color:red\">BETA</span> From His Heart Ministries website and store! Several new features will be rolled out over the next few weeks. Click <a href=\"http://fromhisheart.org/About-Contact-us.aspx?a=Website%Feedback\">here</a> to report a problem or provide feedback.");
//	}
});

function set_div(text) {
	$('.location_status').html('<div class="alert" style="text-align:center;margin-top:0px;background:#F5C5C5;padding:10px;border:solid 2px; red;color:red;border-right:none;border-left:none;border-top:none;">' + text + '</div>');
}

function set_notice(text) {
	$('.location_status').html('<div style="text-align:center;background:#EEEBDA;padding:10px;color:#7F7B67;border-bottom:#CFC79B solid 2px;">' + text + '</div>');
}
