﻿$(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
	});
	
	$(".lightbox").fancybox({
		'overlayShow'			: true,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',
		'zoomOpacity'			: true
	});
	
	$("a.group").fancybox({
		'hideOnContentClick': false
	});




	
	
	$(".menu_head").click(function() {
		$(this).next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");	
	});


	$(".hit").next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");

	});


	

$(document).ready(function() {

	// initialize tooltip
	$(".dyna img[title]").tooltip({
	
		// use single tooltip element for all tips
		tip: '.dynatip', 
		
		// tweak the position
		offset: [10, 2],
		
		// use "slide" effect
		effect: 'slide'
		
	// add dynamic plugin 
	}).dynamic( {
	
		// customized configuration on bottom edge
		bottom: {
		
			// slide downwards
			direction: 'down',
			
			// bounce back when closed
			bounce: true
		}
	});
	
});



