	$(document).ready(function() { 
	
		$("a.fancy").fancybox({
			'titleShow'		: false
		});
			
		$('#gallery-wrap').cycle({ 
			delay:  3000, 
			speed:  2000, 
			prev:   '#prev', 
			next:   '#next',			
			after: onAfter 
		}); 
		 
		function onAfter() { 
			$('#fadetitle').html(this.alt); 
		}; 	
		
	});

