$(document).ready(function() {

	$('.cycle').cycle({
		fx: 'fade',
		timeout: 5400
	});
	
	$('.modal').fancybox({
	
		onStart: function() {
			$('#content object').hide();
		},
		
		onClosed: function() {
			$('#content object').show();
		}
	
	});

	$('.post a[href$=".jpg"], .post a[href$=".jpeg"], .post a[href$=".gif"], .post a[href$=".png"]').fancybox();

});
