$(document).ready(function() {

	/* scrollable */
	$(".scrollable").scrollable({vertical:true});

	/* fancy */
	$(".scrollable .items ul li a").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none'
	});

	/* hover opacity */
	$(".items ul").hover(
		function(){
			$(this).css('background','#000');
		}
	);
	$(".items ul li").hover(
		function(){
			$(this).siblings().stop().animate({opacity: 0.5},200);
		},
		function(){
			$(this).siblings().stop().animate({opacity: 1},200);
		}
	);
	
	$("#video_laser").fancybox({
		'padding'		: 0,
		'autoScale'		: false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'width'			: 600,
		'height'		: 398,
		'href'			: 'http://vimeo.com/moogaloop.swf?clip_id=30395353',
		'type'			: 'swf'
	});
	
});
