$(document).ready(function(){
	initTableSundays();
	initTableNoClick();
	initTableClickCaption();
	initCarousel();
});

function initHomeSubscribe(){
	$('.home-fake-form').submit(function(e){
		e.preventDefault();
		var textValue = $('.home-fake-form input.text').val();
		$('#home_iframe').contents($('#element_1')).val(textValue);
		$('#home_iframe').html($('#form_3').submit());
	});
}

function initTableClickCaption(){
	$('table.calender caption').click(function(){
		$(this).siblings().slideToggle('slow');
		if ($(this).hasClass('active') !== true) {
			$(this).addClass('active');	
			$(this).parent().css('margin-bottom','30px');
		} else {
			$(this).removeClass('active');	
			$(this).parent().css('margin-bottom','0px');
		}
	});
}

function initTableNoClick(){
	$('td a').click(function(e){
		e.preventDefault();
	});
}

function initTableSundays(){
	$('tr td:last-child, tr th:last-child').addClass('blue');	
}

function initCarousel () {
	$('#featured').cycle({
		fx: 'fade',
		timeout: 5000,
		pager: '#carousel-links'
	});
}
