function showNav() {
	jQuery(this).find('ul').fadeIn(300);
}
function hideNav() {
	jQuery(this).find('ul').fadeOut(300);
}
jQuery(document).ready(function(){
	jQuery('#rotator').innerfade({
		animationtype: 'fade',
		speed: 750,
		timeout: 3000,
		type: 'sequence',
		containerheight: '270px'
	});
	jQuery("#stories_slider").jCarouselLite({
		btnNext: ".right_arrow",
		btnPrev: ".left_arrow",
		speed: 500,
		visible: 5
	});
	var config = {    
	     over: showNav,  
	     timeout: 100, 
	     out: hideNav    
	};
	jQuery('#header .menu li:has(ul)').addClass('dropdown');
	jQuery("#header .menu li.dropdown").hoverIntent(config);
	
	jQuery("a.fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
	});
	
	jQuery('.donation_option').click(function(){
		jQuery('.donation_form').hide();
		
		var target = jQuery(this).attr('href');
		jQuery(target).show();
		return false;
	});
});
