
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: true,
		data: [
			{type:"news",id:11095}
		]
	};
	//emergency bulletin
	$('#Form1').bulletin(bulletinOptions);
	
	//omni options
	var omniOptions = {
		directionL2:"down",
		directionL3:"left",
		showL3s:true,
		speed:500
	};
	//menu options
	var menuOptions = {
		directionL2:"down",
		directionL3:"right",
		showL3s:true,
		speed:500
	};
	var menuOptions2 = {
		directionL2:"down",
		directionL3:"left",
		showL3s:true,
		speed:500
	};
	//omni
	willow.getMenu("119207|119210|119215|119217",function(data){
		$("#omni").menu(data.menu,omniOptions);
		//menu
		willow.getMenu("118851|118852|118853",function(data){
			$("#L1-1").menu(data.menu,menuOptions);
			willow.getMenu("118854|118855",function(data){
				$("#L1-2").menu(data.menu,menuOptions2);
			});
		});
	});
	
	//photo rotation
	$("#photo_rotator").cycle({
		speed:500,
		timeout:5000
	});
	
	//news cycle
	$('#news_holder').cycle({
		timeout:5000,
		speed:1000
	});
		
	//$("#non_flash_content").css("display","block");
});	


