
willow.ready(function($) {

	//emergency bulletin options
	var options = {
		emButtonPosition: "right",
		emButton: false
	};
	//emergency bulletin
	willow.getNews("9274",function(data){$('#Form1').bulletin(data,options);},{"backlink":window.location});
	
		
	//menu options
	var menuOptions = {
		direction:"down",
		showL3s:false,
		speed:500
	};
	//menu
	willow.getMenu("101887|101888|101889|101890|101891|101892",function(data){
		$("#L1").menu(data.menu,menuOptions);
	});	
	
	$.fn.cycle.defaults = { 
	    timeout:       7000,  // 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) 
	}; 
	
	$('#photos').cycle();
	$('#thumbs').cycle();
	
	//var ql_height = $("#ql-holder").height();
	//var ql_width = ($("#ql-holder").width())/2;
	$("#ql-holder").css("top","23px");			
	$("#ql-holder").css("left","-55px");
	$("#ql-holder").hide();
				
	$("#quicklink").hover(
		function () {$("#ql-holder").show();}, 
		function () {$("#ql-holder").hide();}
	);
});	


