willow.ready(function($) {
	// Menu data 
	var menuOptions = {direction:"down",showL3s:false};
	willow.getMenu("123116|123117|124959|124960|124961|124962|124963",function(data){
		$('#L1').menu(data.menu,menuOptions);
	});
	
	// Emergency Bulletin 
	var emOptions = {emButtonPosition: "right",emButton: false};
	willow.getNews("12558",function(data){$('#Form1').bulletin(data,emOptions);},{"backlink":window.location});
	
	// Podium Search 
	$('#search').pdSearch({showButton:true, showButtonClass:'searchButton', showButtonText:''}); 
	$(".searchButton").css("margin","7px 0 0 0");
	
	// Use the cycle plugin so when the user clicks on a thumb it displays as the main photo
	$("#photos").cycle({
		timeout: 0, // Set to 0 so there is no auto rotate 
		pager: "#thumbPhotoContainer", // Selector container that the pager is contained in 
		pagerAnchorBuilder: function(index){
			return '#thumbPhotoContainer div:eq(' + (index) + ')'; // Selector string for the pager anchors 
		}
	});
	
	$(".newsDetail").fsplit(180);
});	

