$(document).ready(function()
{		
	//--Fotos
	$('a.picbox').fancybox({
			'cyclic': false,
			'speedIn': 300,
			'speedOut': 300,
			'titlePosition': 'inside',
			'overlayShow': true			
	});
		
	//--Show Arrows
	$('#fancybox-left-ico').css({'left':'20px'});
	$('#fancybox-right-ico').css({'right':'20px','left':'auto'});
		
	//--Videos (youtube)
	$('.yt').click(function(){
			$.fancybox({
				'padding'		: 0,
				'width'			: 680,
				'height'		: 495,
				'title'			: this.title,
				'autoScale'		: false,
				'overlayShow'	: true,
				'transitionIn'	: 'fade',
				'transitionOut'	: 'fade',
			'enableEscapeButton': true,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
									'wmode' : 'transparent',
									'allowfullscreen' : 'false'
								}
			});
		return false;
	});
	
	//--Videos (Vimeo)
	$('.iframe').fancybox();
});
