willow.fixPodiumNav();

willow.ready(function($) {
	// Menu data 
	var menuOptions = {direction:"down",showL3s:false,currentL1:pdGlobal.currentPages[0].id};
	willow.getMenu("134489|134490|134491|134492|134493|134494|134495",function(data){
		$('#L1').menu(data.menu,menuOptions);
		
		var $sitemap = $(".sitemap");
		if($sitemap.length > 0){
			$sitemap.sitemap(data);
			//uncomment this if you want to expand all by default$("#expand").click();
		}
	});
	
	// Emergency Bulletin 
	var emOptions = {emButtonPosition: "right",emButton: false};
	willow.getNews("12269",function(data){$('#Form1').bulletin(data,emOptions);},{"backlink":window.location});
	
	// Podium Search 
	$('#search').pdSearch({showButton:true, showButtonClass:'searchButton', showButtonText:''}); 
	$(".searchButton").css("margin","0");
	
	// Homepage specifc styles, styles at the bottom of banner.css file
	if(pdGlobal.currentPages[pdGlobal.currentPages.length-1].id === 134293){
		$("#lOutTbl").addClass("homepage");
		$("#footer").addClass("homepage");
		$("#L1_134489").attr("hoffset","1");
		$("#L1_134495").attr("hoffset","-78");
		if(pdGlobal.currentPages.length === 2){ // Styling for archive page, forces page width to be narrower so padding can be added
			$("#lInTblRCell").addClass("detailPage");
			$(".pgCol").children().width(820);
			$("#lPg").width(820);
		}
	}
	
	// Center facebook link due to no page tools
	if(pdGlobal.currentPages[pdGlobal.currentPages.length-1].type === "portal" || pdGlobal.currentPages[pdGlobal.currentPages.length-1].type === "application"){
		$("#pageTools").css("margin-left","153px");
	}
});	
