$(document).ready(function() {		
	$('#slides').cycle({ 
		fx:    		'scrollLeft', 
		speed:		500,
		timeout:	6000,
		fit: 		0,
		random:		1,
		before: 	onBefore 
	});
	
	function onBefore() { 
		$('#caption').html(this.alt); 
	}
	
	$("a.vimeo").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'fade',
			'width'			: 800,
			'height'		: 600,
			'href'			: this.href.replace(new RegExp("([0-9])","i"), 'moogaloop.swf?clip_id=$1'),
			'type'			: 'swf',
			'swf'           : {'wmode': 'transparent', 'allowfullscreen': 'true'}
		});

		return false;
	});
});
