$(document).ready(

	function(){		
		if ($('#recent-events').length > 0) {
			$('#recent-events').cycle({ 
				fx:     'fade', 
				timeout: 6000, 
				delay:  -2000,
				prev:		'#recent-event-prev',
				next:		'#recent-event-next'
			});
			
			$("a[rel^='prettyPhoto']").prettyPhoto({
				animationSpeed: 'normal',
				padding: 40,
				opacity: 0.9,
				showTitle: true,
				allowresize: true,
				counter_separator_label: ' of ',
				theme: 'dark_square',
				callback: function(){}
			});
		}
	}

);