$(document).ready(function(){
	$('#content').cycle({ 
		fx:    'fade', 
		speed:  2500,
		timeout: 5000,
		pause: 1,
		random: 0
	});
	setupCaptions(); 
	$('#content').pngFix();
}); 

//#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();
	   });
}