$(function() {
	if ($("#content-main").outerHeight() < $("#content").outerHeight())
		$("#content-main").height($("#content").height() + 10);
	
	$(".gallery-item a, .lightbox").fancybox({
		centerOnScroll: true
	});
	
	if ($("body").attr("id") == 'parish_council') {
		$(".item-content-more").before('<p><a class="item-content-morelink" href="#">More information</a></p>');
		$(".item-content-more").hide();
		$(".item-content-morelink").bind('click', function() {
			if ($(this).parent().next('.item-content-more').filter(':visible').length) {
				$(this).parent().next('.item-content-more').slideUp('slow');
			}
			else {
				$(this).parent().next('.item-content-more').slideDown('slow');
			}
			return false;
		});
	}
});
