// -------- JQ Tabs - prevent FOUC --------------
		//<![CDATA[
		// Add styles via JavaScript for graceful degradation...
		document.write('<style type="text/css" media="projection, screen">.fragment { display: none; }</style>');
		//]]>
     
$(document).ready(function()
	{		
		// Slide ministry index - up or down
		$('#weather_tab').toggle(function()
			{
				$('#weather_index:hidden').slideDown();
				$('#weather_tab')[0].blur();
				$(this).addClass('on');
				return false;
			},
			function()
			{
				$('#weather_index:visible').slideUp();
				$('#weather_tab')[0].blur();
				$(this).removeClass('on');
				return false;
			}
		);
		
		$(".person img").mouseover(function () {
					$(this).children().addClass("show");
					
					$(this).mouseout(function () {
						$(this).children().removeClass("show");
					});
		});


		$(".person img").hover(function() {
		  $(this).next("div.bio").animate({opacity: "show", top: "-75"}, "slow");
		}, function() {
		  $(this).next("div.bio").animate({opacity: "hide", top: "-85"}, "fast");
		});
	
		$('.faq').find('dd').hide().end().find('dt').click(function() {
	         var answer = $(this).next();
	         if (answer.is(':visible')) {
	             answer.slideUp();
	         } else {
	             answer.slideDown();
	         }
     	});
     
     	$('#mycarousel').jcarousel({
			       //auto: 6,
			       //wrap: "circular",
			       scroll: 1,
			       visible: 3
		});
	}
);




// -------- JQ Tabs --------------
		//<![CDATA[
            function createCallback(type) {
                return function() {
                    alert('callback: ' + type);
                }
            }
            $(document).ready(function() {
            	$('#tourTables').tabs({fxSlide: true, fxFade: true, fxSpeed: 'normal'});   
            	
            });
     //]]>
