$(document).ready(function() {
	
	$(".videofancy").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				"overlayColor" : '#151515',
				'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;
	});
	$("#videovimeo").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
				'type'			: 'swf',
				'swf'			: {
				   	'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});

		return false;
	});
	$("a.iframe").fancybox({
		'type'			: 'iframe',
		'titlePosition' 	: 'inside',
		'width'			: 730,
		'height'		: 510,
		'autoScale'		: true,
		'autoDimensions': true,
		'centerOnScroll': true,
		"padding": "20",
		"overlayColor" : "#151515"				
		});
	
	$(".primero").hide();
	$('.aja').hover(
		function() {
		    $('.primero').show();
		},
		function() {
		    $('.primero').hide();
		}
	);
	$.swapImage(".swapImage"); 
});
