// SET PAGE STYLE
if (wng_pageInfo.contentClassification  == "Station 1"){
	document.write('\x3Clink rel="stylesheet" href="http://ftpcontent.worldnow.com/qnicorp/custom/broadcast.css">');
	$wn(document).ready(function(){
		changeBranding("broadcast");
	});
} else if (wng_pageInfo.contentClassification  == "Station 2"){
	document.write('\x3Clink rel="stylesheet" href="http://ftpcontent.worldnow.com/qnicorp/custom/prints.css">');
	$wn(document).ready(function(){
		changeBranding("prints");
	});
} else if (wng_pageInfo.contentClassification  == "Station 3"){
	document.write('\x3Clink rel="stylesheet" href="http://ftpcontent.worldnow.com/qnicorp/custom/interactive.css">');
	$wn(document).ready(function(){
		changeBranding("interactive");
	});
} else {
	document.write('\x3Clink rel="stylesheet" href="http://ftpcontent.worldnow.com/qnicorp/custom/default.css">');
	$wn(document).ready(function(){
		changeBranding("default");
		
	});	
}

$wn(document).ready(function(){
	moveSearch();
});	

// CHANGE BRANDING HEADER
function changeBranding(section){
	$wn("#WNBrandingImage").attr("src","http://ftpcontent.worldnow.com/qnicorp/custom/" + section + "/hdr_branding.jpg")
}

// Fix Date
function fixDate($el){
	var tDate = $el;
	$wn(tDate).find("script").remove();
	$wn(tDate).find("noscript").remove();
	$wn(tDate).html($wn(tDate).text());
}

// Search Box
function moveSearch(){
	var $target = $wn("#WNContainerMemberSearch-headertop");
	$target.find(".wnQueryText").before("<label id='searchText'>SEARCH</label>");
	$target.appendTo("#WNBranding");
}

