$(document).ready(function() {
	$("a#donate").bind("click", function() {
		$("#donate_form").submit()
	});

	$("a#single_1").fancybox();
		
	$("a#single_2").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: false,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	});
	
	$("a#single_3").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
	
	$("a.group1").fancybox({
		'hideOnContentClick': false
	});
	
	$("a.group2").fancybox({
		'hideOnContentClick': false
	});

	$("a.group3").fancybox({
		'hideOnContentClick': false
	});

	$("a.group4").fancybox({
		'hideOnContentClick': false,
		'frameWidth': 500,
		'frameHeight':400
	});

	
	$(".mapa").fancybox({
		'width' : 625,
		'height' : 415,
		'autoScale' : false,
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe'
	}); 

});
$("#various7").fancybox({
  onStart  : function() {
   return window.confirm('Continue?');
  },
  onCancel : function() {
   alert('Canceled!');
  },
  onComplete : function() {
            alert('Completed!');
  },
  onCleanup : function() {
            return window.confirm('Close?');
  },
  onClosed : function() {
            alert('Closed!');
  }
 });
