$(document).ready(function(){
$("div.fadehover img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, 100);
},
function() {
$(this).stop().animate({"opacity": "1"}, 100); //
});
 


});

$(document).ready(function() {
	$("a#donate").bind("click", function() {
		$("#donate_form").submit()
	});

	$("a.single_1").fancybox();
		
	$("a.single_2").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
	});
	
	$("a.single_3").fancybox({
		'overlayShow'			: true,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
		
	});
	
	$("a.video").fancybox({
			'width'				: 600,
				'height'			: 338,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'

	});
	
	$("a.music").fancybox({
		'zoomOpacity'			: true,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'frameWidth'			: 478,
		'frameHeight'			: 25,
		'hideOnContentClick': false,
		'overlayOpacity'	    :	0.0

	});
	
	$("a.game").fancybox({
		'zoomOpacity'			: true,
		'zoomSpeedIn'			: 800,
		'zoomSpeedOut'			: 600,
		'frameWidth'			: 805,
		'frameHeight'			: 605,
		'hideOnContentClick': false,
		'overlayOpacity'	    :	0.0

	});
	
	$("a.group").fancybox({
		'zoomOpacity'			: true,
		/*'overlayShow'			: false,*/
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'overlayOpacity'	    :	0.5,
		'frameWidth'			:	825
		
	});
	
		$("a.lightbox").fancybox({
		'zoomOpacity'			: true,
		/*'overlayShow'			: false,*/
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'overlayOpacity'	    :	0.5,
		'frameWidth'			:	825
		
	});
	
	$("a[rel=example_group]").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});

		

});
