willow.ready(function($){
	$("#Form1").bulletin({data:[{type:"news",id:13163}]});// EM bulletin
	$('#search').pdSearch({showButtonClass:'searchBtn', showButtonText:''}); // Podium Search

	willow.getMenu("132630|132631|132632|132633|132634|132635|132636",function(data){// Menu data 
		$('#L1').menu(data.menu,{showL3s:false});
	});
	
	$("#photos").cycle();
	
	$("#whyMead").click(function(e){
		e.preventDefault();
		var $this = $(this),
			$thisContain = $("#whyMeadContainer"),
			$storyBook = $("#storyBook");
			
		$this.toggleClass("open");
		if($this.hasClass("open")){
			$storyBook.animate({"top":0});
			$thisContain.animate({"top":158});
		}else{
			$storyBook.animate({"top":572});
			$thisContain.animate({"top":0});
		}
	});
	
	$("#storyBook").cycle({timeout: 0, pager: ".storyBookNav"});
});


