$(document).ready(function() {

	$("a.fancybox").fancybox( {
		'titlePosition' : 'inside'
	});
	$("a.fancyflip").fancybox( {
		'width' : 930,
		'height' : 1386,
		'autoScale' : false,
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe',
		'titlePosition' : 'inside'
	});
	$("a.fancyframe").fancybox( {
		'width' : '75%',
		'height' : '75%',
		'autoScale' : false,
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe',
		'titlePosition' : 'inside'
	});

	$("a.fancyMaps").fancybox( {
		'width' : '75%',
		'height' : '75%',
		'autoScale' : false,
		'showCloseButton' : false,
		'titlePosition' : 'inside',
		'type' : 'iframe'
	});

	$(".videolink").click(function() {
		$.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/'),
			'href' : this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
*/			'type' : 'swf',
			'href' : this.href,
			'titlePosition' : 'inside',
			'swf' : {
				'wmode' : 'transparent',
				'allowfullscreen' : 'true'
			}
		});
		return false;
	});

	$("a.fancyfavoritos").fancybox( {
		'width' : '40%',
		'height' : '80%',
		'autoScale' : false,
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe',
		'titleShow' : false
	});
	
});

