//emergency bulletin options
var options = {
   emButtonPosition: "right",
   emButton: false,
   minPageWidth:1000
};



willow.ready(function($) {
  	//emergency bulletin
	willow.getNews("12973",function(data){$('#Form1').bulletin(data,options);},{"backlink":window.location}); 	
	
	//cycle news titles 
	$('#news_background').cycle({
		fx: 'fade',
		timeout:6000
	});
	
	//Menus
	var menuoptions = {
		direction:"down",
		showL3s:false
	};
	willow.getMenu("134099|134100|134101|145151|134102|134103",function(data){
		$('#L1').menu(data.menu,menuoptions);
		
		//Hack to get the L1 on states to stay on with cool sprites
		$(".submenudown").hover(function(){
			//submenudown should have an ID, you need that to target the L1
			$obj = $(this).attr("id").split("_");
			$("#L1 li.L1_"+$obj[1]).addClass("hover");
		},function(){
			$("#L1 li").removeClass("hover");
		});
	});
});
