$(document).ready(function() {
	// Main slideshow
	$('#slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout : 6000
	});
	// Customer images
	$('#customers-slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

	right_video = $('a.right-video').attr('href');
	left_video = $('a.left-video').attr('href');
	$('.right-video').click(function(e){
		e.preventDefault();
		$.fancybox({
			'height' : 450,
			'width' : 720,
			'href': right_video,
			'type': 'swf',
			'swf': {
				'wmode': 'transparent',
				'allowfullscreen': 'true',
				'params' : {'bgcolor' : "#000000", 'allowscriptaccess' : 'always'},
				'flashvars':'videoPath=/uploads/videos/movie.f4v&posterPath=/uploads/videos/myPosterFrame.jpg&skinPath=/uploads/videos/skin.swf',
				'attributes' : {'id' : 'flashcontent'}
			}
		});
	});
	$('.left-video').click(function(e){
		e.preventDefault();
		$.fancybox({
			'height' : 470,
			'width' : 800,
			'href'			: left_video,
			'type'			: 'swf',
			'swf'			: {
				'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
	});
});

