$(function() {
	
	$("#intros").cycle({
		timeout: 7500, 				// time between fades (ms)
		speed: 2000 					// fade effect duration (ms)
	});

	
	$("#sec_intros").cycle({
		timeout: 7500, 				// time between fades (ms)
		speed: 2000 					// fade effect duration (ms)
	});
	
	$('#mc_next_month, #mc_prev_month').live('click', function(){
		var cal = $('#mc_calendar');
		var href = $(this).attr('href');
		$('#loading-indicator').css({opacity: 0, display: 'block'}).fadeTo(250, 1);
		cal.fadeTo(250, 0.4, function(){
			cal.load(href + ' #mc_calendar', function(){
				cal.fadeTo(250, 1);
				$('#loading-indicator').fadeTo(250, 0);
				cal.find('a[title]').tipTip();
			});
		});
		return false;
	});
	
});

