/* Site Configurations */
var branding = {
	alertsLink : "/category/208601/weatheralerts",
	closingsLink : "/category/213006/receive-school-closings-alerts",
	logoLink : "/weather"
};

/* COMMON WEATHER */
var wxCache = {};
function fetchWxFeed(i, callback) {
  if (wxCache[i] !== undefined) {
    callback(wxCache[i], i);
    return;
  }

  var wxBase = 'http://data.wp.myweather.net/eWxII/?data=*{STATION}';
  var url = wxBase.replace('{STATION}', wxLocations[i].zipCode);
  WNHttpRequestManager.makeRequest(url, {
    onSuccess: function() {
      wxCache[i] = this.response.responseXML;
      callback(this.response.responseXML, i);
    },
    onError: function() {}
  });
}

var wxLocations = [
  {name: 'Kansas City',   zipCode: '64101'},
  {name: 'Overland Park', zipCode: '66212'},
  {name: "Lee's Summit",  zipCode: '64063'},
  {name: 'Independence',  zipCode: '64057'}
];

// Old station list, for backwards compatibility
var wxStations = new Array();
wxStations[0] = new Array("http://data.wp.myweather.net/eWxII/?data=*64101", "Kansas City");
wxStations[1] = new Array("http://data.wp.myweather.net/eWxII/?data=*66212", "Overland Park");
wxStations[2] = new Array("http://data.wp.myweather.net/eWxII/?data=*64063", "Lee's Summit");
wxStations[3] = new Array("http://data.wp.myweather.net/eWxII/?data=*64057", "Independence");

/* Additional 728x90 for Monster.com ads */
var wncc = '';
var ad_wncc = '';
try {
	wncc = wng_pageInfo.contentClassification;
	ad_wncc = wncc.toLowerCase();
	while (ad_wncc.indexOf(" ") != -1){
		ad_wncc = ad_wncc.replace(" ", "");
	}
} catch(e) {}

/* Vibrant Ad Tags */
if(wng_pageInfo.containerType === 'S'){
	var vibSrc = "";
	if(wng_pageInfo.contentClassification === 'Auto'){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=7001";
	}
	else if((wng_pageInfo.contentClassification === 'Community') || (wng_pageInfo.contentClassification === 'Community - Calendar') || (wng_pageInfo.contentClassification === 'Community - Events') || (wng_pageInfo.contentClassification === 'Education')){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=7021";
	}
	else if((wng_pageInfo.contentClassification === 'Entertainment') || (wng_pageInfo.contentClassification === 'Entertainment - Interview') || (wng_pageInfo.contentClassification === 'Entertainment - Music')){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=9856";
	}
	else if((wng_pageInfo.contentClassification === 'Food Recipe')){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=9857";
	}
	else if((wng_pageInfo.contentClassification === 'Health')){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=9859";
	}
	else if((wng_pageInfo.contentClassification === 'Sales - Home and Garden') || (wng_pageInfo.contentClassification === 'Sales - Home Garden-New Home') || (wng_pageInfo.contentClassification === 'Sales - Home Garden-Plumbing') || (wng_pageInfo.contentClassification === 'Sales - Home Garden-Real Estate') || (wng_pageInfo.contentClassification === 'Sales - Home Garden-Remodeling') || (wng_pageInfo.contentClassification === 'Sales - Home Garden-Roofing') || (wng_pageInfo.contentClassification === 'Sales - Home Garden-Security') || (wng_pageInfo.contentClassification === 'Sales - Home Garden-Windows')){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=9860";
	}
	else if((wng_pageInfo.contentClassification === 'Sales - Finance')){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=7015";
	}
	else if((wng_pageInfo.contentClassification.indexOf('News') != -1) || (wng_pageInfo.contentClassification.indexOf('Political') != -1) || (wng_pageInfo.contentClassification.indexOf('Station') != -1) || (wng_pageInfo.contentClassification.indexOf('Weather') != -1)){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=9854";
	}
	else if((wng_pageInfo.contentClassification.indexOf('Sport') != -1)){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=9861";
	}
	else if((wng_pageInfo.contentClassification === 'Technology')){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=9862";
	}
	else if((wng_pageInfo.contentClassification.indexOf('Traffic') != -1) || (wng_pageInfo.contentClassification.indexOf('Travel') != -1)){
		vibSrc = "http://meredithtv.us.intellitxt.com/intellitxt/front.asp?ipid=9863";
	}
}

/* Additional Monster.com Ad */
/*
if (wng_pageInfo.containerType === "C"){
	$wn(document).ready(function(){
		$wn("#WNCols234-5").append("<div id='csBottomAd' style='width:728px; text-align: center; margin: 15px auto;'><iframe width='728' scrolling='no' height='90' frameborder='0' marginwidth='0' marginheight='0' src='http://ad.doubleclick.net/adi/wn.loc.kctv/"+ ad_wncc +";sz=728x90;ad=bottom;wnsz=200;apptype=platform;env=production;ord="+ ord +"?'></iframe></div>");
	});
}
*/

/* Meredith Shared Code */
document.write('<scr' + 'ipt type="text/javascript" src="http://ftpcontent.worldnow.com/meredith/custom/custom-master.js"><\/scr' + 'ipt>');
