$(document).ready(function(){
	/*
	$('div#companyVideo').animate({
		opacity: 'toggle',
		left: 100
	}, 1000);
	*/
	$('a.fancybox').fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'width'			: 300,
		'height'		: 120,
		'autoDimensions' : false
	});
	
	$(".movie").fancybox({
		'padding'           : 0,
		'height'			: 404,
		'width'				: 717,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayColor' 		: '#000'
	});
	
	var slideshow = $(".slides").scrollable({
		next: '.nextSlide',
		prev: '.prevSlide',
		disabledClass: 'disabled',
		keyboard: true,
		circular: true,
		
		onSeek: function(event, slideIndex){
			$('div.imageContainer img').each(function(){
				if ($(this).attr('data-id') == slideIndex){
					$(this).fadeIn(1000);
				} else {
					$(this).fadeOut(1000);
				}
			});
		}
	}).autoscroll(6000);
});
