
willow.ready(function($){
	//emergency bulletin options
	//DATA TYPES
	//{type:"news",id:11111}
	//{type:"announcement",id:22222}
	//{type:"rss",url:"http://rss.news.yahoo.com/rss/topstories"}
	var bulletinOptions = {
		emButtonPosition: "right",
		emButton: false,
		data: [
			{type:"news",id:11303}
		]
	};
	//emergency bulletin
	$('#Form1').bulletin(bulletinOptions);
	
	$('#search').pdSearch({showButton:true, showButtonClass:'searchButton', showButtonText:''});
	$(".searchButton").css("margin","0");
	
	//menu options
	var menuOptions = {
		direction:"down",
		showL3s:false,
		speed:0
	};
	//menu
	willow.getMenu("121652|121654|121653|121656|121657|121658",function(data){
		$("#L1").menu(data.menu,menuOptions);
	});
	
	$('#photos').cycle({
		next:   '#photo_next', 
		prev:   '#photo_prev' 
	});
	
	//toggle sitemap buttons
	$(".sitemap_toggle").toggle(
      function () {
		//open
	  	$("#footer_sitemap_wrapper").css("display","none");
		$(".sitemap_toggle").css("background-position","0 -18px");
      },
      function () {
		//close
	  	$("#footer_sitemap_wrapper").css("display","block");
		$(".sitemap_toggle").css("background-position","0 0");
      }
    ); 	
	
	//$("#non_flash_content").css("display","block");
});	


