$(document).ready(function() {

	$('.thumbs-inline').jcarousel();

	$('ul.thumbs a').click(function(e) {
		e.preventDefault();
		var img = $(this).attr('href');
		$('#mainFigure').attr('src', img);
//		$('#subtitle').html( $(this).attr('title') || '&nbsp;');

	});

	$('.detail .meta a').click(function (ev) {
		window.open($(this).attr('href'), '_blank');
		ev.preventDefault();
	});
	$('.detail .meta a:not(.download)').html('&nbsp;');

	setInterval('keepAlive();', 60000);

});

keepAlive = function() {
	$.get('/?keepalive=1', function() {});
}
