// JavaScript Document
$(document).ready(function(){
	$("a.fancybox-a").fancybox({
		'overlayColor'	: '#000',
		'onComplete'	: function(){
			$("#fancybox-title").hide();
		}
	});
	
	$(".cotizacion").fancybox({
		'overlayColor'	: '#000',
		'width'			: 660,
		'height'		: 530,
		'type'			: 'iframe',
		'onComplete'	: function(){
			$("#fancybox-title").hide();
		}
	});
	
	$("#videoyoutube").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'overlayColor'	: '#000',
				//'width'		: 680,
				//'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
					 'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
	
});


