$(function()
{ 
	$('#shuffle')
	.cycle({
	    fx:     'fade',
	    delay:  -6000,
	    next:   '#shuffle', 
    	pause:   1,
    	pager:  '#photo_nav' 
	});
	
	$('#title_bar')
	.alternation({
		timeout: 6000,
		speed: 1000,
		pause: 1,
	});

	$('#photos')
	.alternation({
		timeout: 6000,
		speed: 1000,
		pause: 1,
	});

});