willow.ready(function($){
	// Fsplit keeping html code in there on news detail
	//$(".newsDetail").html(willow.fsplit($(".newsDetail").html(),100,false));
	//Was setting the same content for all .newsDetail elements. Updated to loop properly - NRM 
	$('.newsDetail').each(function(index) {
		 $(this).html(willow.fsplit($(this).html(),100,false));
	});
	$(".eventTitle a").fsplit(55); // Fsplit on event titles
	
	willow.getMenu("112612|112613|112614|112615|112616|112617",function(data){ // Menu data
		$("#L1").menu(data.menu,{showL3s:false});
	});
	
	$("#Form1").bulletin({data:[{type:"news",id:10398}]});// EM bulletin
	
	$("#photos").cycle();
});
