$(document).ready(function() {
	
	if($("#page_main_news").length) {
		var highestCol = Math.max($('#content').height(),$('#supplemental').height());
		$('#content,#supplemental').css('min-height', highestCol);
	}		

	$("a[rel^='prettyPhoto']").not(".video")
	.each(function() {
		$(this).hover(function() {
			$(this).children('.zoom').stop().fadeTo(250, 1);
		}, function() {
			$(this).children('.zoom').stop().fadeTo(250, 0);
		});
	})
	.append('<span class="zoom">Zoom</span>')
	.prettyPhoto({
		showTitle: true,
		counter_separator_label: " of "
	});
	
	$("a.video").each(function() {
		$(this).hover(function() {
			$(this).children('.zoom').stop().fadeTo(250, 0);
		}, function() {
			$(this).children('.zoom').stop().fadeTo(250, 1);
		});
	})
	.append('<span class="zoom" style="opacity: 1;">Zoom</span>')
	.prettyPhoto({
		showTitle: true,
		counter_separator_label: " of "
	});
	
	$("#archive-accordion").accordion({
		autoHeight: false,
		navigation: true,
		collapsible: true,
		active: false
	});

	$("#news-accordion").accordion({
		autoHeight: false,
		navigation: true,
		collapsible: true,
		active: true
	});
	
	$(".linked-day").parents("td.cell").hover(function() {$(this).addClass("hovered");},function() {$(this).removeClass("hovered");});

});
