$(function(){
	var imgfilename = 'img/regence_logo_1.gif';
	var stateName = 'Oregon and Utah';
	var policyText = '&copy; 2009 The Regence Group. Regence is an independent licensee of the Blue Cross and Blue Shield Association.<br /><a href="https://www.myregence.com/mxp-theme/privacy/unprotpolicy.jsp" target="_top">Read our policies.</a>';
	if( $.cookie('state') =='wasington' ||$.cookie('state') =='idaho' ) {
		var imgfilename = 'img/regence_logo_2.gif';
		var stateName   = 'Washington and Idaho';
		var policyText  = '&copy; 2009 The Regence Group. Regence is an independent licensee of the Blue Shield Association.<br /><a href="https://www.myregence.com/mxp-theme/privacy/unprotpolicy.jsp" target="_top">Read our policies.</a>';
	}
	
	$(".regence a img").attr("src", imgfilename);
	$("#state b").text(stateName);
	$("#policy").html(policyText);
});


function getQueryVariable(variable) {
    var query = window.location.search.substring(1);
    var vars = query.split("&");
    for (var i = 0; i < vars.length; i++) {
        var pair = vars[i].split("=");
        if (pair[0] == variable) {
            return pair[1];
        }
    }
    return "";
    //alert('Query Variable ' + variable + ' not found');
} 