//emergency bulletin options
var options = {
    emButtonPosition: "right",
    emButton: false
};

willow.ready(function($) {
    //emergency bulletin
    willow.getNews("12819",function(data){$('body').bulletin(data,options);},{"backlink":window.location});
    
    $(".photos").cycle({ 
	    timeout:       4000,  // milliseconds between slide transitions (0 to disable auto advance) 
	    speed:         1000,  // speed of the transition (any valid fx speed value) 
	    next:          null,  // id of element to use as click trigger for next slide 
	    prev:          null,  // id of element to use as click trigger for previous slide 
	    before:        null,  // transition callback (scope set to element to be shown) 
	    after:         null,  // transition callback (scope set to element that was shown) 
	    height:       'auto', // container height 
	    sync:          1,     // true if in/out transitions should occur simultaneously 
	    fit:           0,     // force slides to fit container 
	    pause:         0,     // true to enable "pause on hover" 
	    delay:         0,     // additional delay (in ms) for first transition (hint: can be negative) 
	    slideExpr:     null   // expression for selecting slides (if something other than all children is required) 
	});
    
    //tab click
    $(".tabs li a").click(function(e){
    	e.preventDefault();
    	var $news = $("#news"), $events = $("#events"), $obj = $(this);
    	if($obj.hasClass("n-tab")){
    		if($news.is(":visible")){return;}
    		$events.fadeOut("slow",function(){
    			$news.fadeIn("slow");
    		});
    	}else{
    		if($events.is(":visible")){return;}
    		$news.fadeOut("slow",function(){
    			$events.fadeIn("slow");
    		});
    	}
    	
    });
	
	$(".newsHeadline a").fsplit(35);
	$(".newsBrief").fsplit(100);
	if ($.browser.msie) {
		$(".newsBrief").fsplit(90);
	}
	
	var menuOptions = {
        direction:"down",
        showL3s:false
    };

     willow.getMenu("132905|132907|132908|132912|132913",function(data){
		$('#nav').menu(data.menu,menuOptions);
     });
	 
	 $("#nav_132905").attr("hoffset","2");
});
