//#hide animation captions at first, reveal them on hover
function setupCaptions()
{
	$("#content p.caption").hide();
	$('#content div').hover(function() {
		$('p.caption',this).toggle();
	   },function() {
		$('p.caption',this).toggle();
	   });
}