jQuery(document).ready(function() {
	jQuery('#slideshow').cycle({
			fx:    'fade',
			speed:  2500,
			timeout:  6500
		});


	jQuery(".clip").click(function() {
			jQuery.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: 'none',
					'transitionOut'	: 'none',
					'title'			: this.title,
					'width'		    : 680,
					'height'		: 495,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf'
				});

			return false;
		});
	
	jQuery("a.slide").fancybox();({

		    'transitionIn': 'elastic',

		    'transitionOut': 'fade'

	        });

	
});
