

		


		
		
		
	
	
	
		
		
	


			
	jQuery().ready(function() {

		$.ajaxSetup ({ cache: false });
		
		$('#sortable tr:odd, .sortable tr:odd').addClass('odd');
		$('#sortable tr:even, .sortable tr:even').addClass('even');

		$("a.fancy").fancybox({
			'hideOnContentClick'	: false,
			'width'					: Math.min(860, $(window).width() - 60),
			'height'				: $(window).height() - 60,
			'overlayShow'			: true,
			'zoomSpeedIn'			: 600,
			'zoomSpeedOut'			: 500,
			'easingIn'				: 'easeOutBack',
			'easingOut'				: 'easeInBack'
		});  

		$("#events a,.calevent").click(function(event) {
			event.preventDefault();

			$.fancybox({
				'href'					: $(this).attr("href") + "?ajax=yes",
				'hideOnContentClick'	: false,
				'frameWidth'			: 500,
				'frameHeight'			: Math.min($(window).height()-100, 500),
				'width'					: 500,
				'height'				: Math.min($(window).height()-100, 500),
				'autoDimensions'		: false,
				'overlayShow'			: false,
				'zoomSpeedIn'			: 600,
				'zoomSpeedOut'			: 500,
				'easingIn'				: 'easeOutBack',
				'easingOut'				: 'easeInBack'
			});
		});


		$("img").pngfix();		

	});

	

	

