$j(document).ready(function() {

// Homepage refresh
$j(document).oneTime(300000, function() {
	var cacheBuster = new Date();
	cacheBuster = cacheBuster.getTime();
	var currentLoc = location.href;
	if (currentLoc.indexOf("?") != -1) {
		currentLoc = currentLoc.substring(0,currentLoc.lastIndexOf("?"));
	}
	location.href = currentLoc + '?' + cacheBuster; 
});

// Photo credits
$j('.top-story .figure .credit a').toggle(
	function() {
		$j(this).text('Hide caption');
		$j('.top-story .figure .caption').css({ display: 'block' });
	},
	function() {
		$j(this).text('Show caption');
		$j('.top-story .figure .caption').css({ display: 'none' });		
	}
);

// Lead story credits
$j('#homepage-lead-story .caption-toggle').toggle(
	function() {
		$j(this).text('Hide caption');
		$j('#lead-photo-caption').css({ display: 'block' });
	},
	function() {
		$j(this).text('Show caption');
		$j('#lead-photo-caption').css({ display: 'none' });		
	}
);

});