  $(document).ready(function () {

    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('a.group').fancybox({
		'speedIn':		300,
		'speedOut':	300,
		'overlayColor':	'#000',
		'overlayOpacity':	0.7,
                'titlePosition': 'over'
	});
	
	
	$('a[rel="film"]').click(function(e) {
	e.preventDefault();
	$.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',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});
	
	
	/*
	var count=$('.img').length; 
	
	for(var i = 0; i < count; i += 16) {
		$('.img').slice(i,i+16).wrapAll('<div class="gallery-tab"></div>');
	}
	
	$('.gallery-tab').wrapAll('<div class="items"></div>');
	$('.items').wrap('<div class="scrollable"></div>');

	var navi_count = $(".gallery-tab").length;
	console.debug(navi_count);
	$(".navi").css('width',(navi_count*16));
	$(".scrollable").scrollable().navigator();
	*/
  });

