$(document).ready(function(){
	$("a[rel=fancybox]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Imagen ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	$("a[rel=Galeria]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Imagen ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	$("#estoyinteresado").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'scrolling'		: 'no',
		'titleShow'		: true,
		'onClosed'		: function() {
		    $("#error").hide();
		}
	});
	
	$("#estoy_interesado").bind("submit", function() {

		if ($("#nombre").val().length < 1 || $("#email").val().length < 1 || $("#telefono").val().length < 1) {
		    $("#error").show();
		    $.fancybox.resize();
		    return false;
		}

		$.fancybox.showActivity();

		$.ajax({
			type		: "POST",
			cache	: false,
			url		: "estoy_interesado.php",
			data		: $(this).serializeArray(),
			success: function(data) {
				$.fancybox(data);
				$('form :input.c').val("");
			}
		});

		return false;
	});
	
	$(".video").fancybox();
	
	
});


