﻿$(function(){
    var location = parent.document.URL;
    var isWorkstation = location.indexOf("vworkstation");
    var isAscendio = location.indexOf("ascendio");
    var isStaging = location.indexOf("stag");
    var isProductionSite = location.indexOf("www.answersbc.org");
    
    if(isWorkstation > -1){
        set_div("It looks like you're on one of the vworkstations; are you sure this is where you want to be?");
    } else if(isAscendio > -1){
        set_div("It looks like you're on a development version of this site. Are you sure that's where you want to be?");
    } else if(isStaging > -1){
        set_div("You're on staging! Is that where you want to be?");
    } else{
        // removed 1/21/11
	// set_notice("Welcome to the new <span style=\"color:red\">BETA</span> Answers with Bayless Conley website and store! Several new features, including Sermon Notes, will be rolled out over the next few weeks. Click <a href=\"http://174.132.234.114/About-Us/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:20px;background:#F5C5C5;padding:10px;border:solid 1px; red;color:red;border-right:none;border-left: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>');
}
