$(document).ready(function(){

	
	// gallery
	if ($('#gallery').length){
		$('#gallery a').fancybox({
			'transitionIn'	:	'fade',
			'transitionOut'	:	'fade',
			'speedIn'		:	640, 
			'speedOut'		:	480, 
			'overlayShow'	:	true,
			'titlePosition'	:	'over',
			'cyclic'		:	true
		});
	}
	
	
	//videobox
		  $('.videoBox').click(function() {
                $.fancybox({
                'padding'        : 0,
                'autoScale'        : false,
                'transitionIn'    : 'none',
                'transitionOut'    : 'none',
                'title'            : this.title,
                'width'        : 680,
                'height'        : 383,
                'href'            : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
                'type'            : 'swf',
                'swf'            : {
                     'wmode'        : 'transparent',
                    'allowfullscreen'    : 'true'
                }
        });

    	return false;
		});

	
});


