
	$(document).ready(function () {

		//Fancy Box Stuff
		$("a.fancybox").fancybox({
			'overlayShow'	: true,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'hideOnOverlayClick':false,
			'hideOnContentClick':false
		});

		// Accourdion Menu
		$('.accordion .head').click(function() {
			$(this).next().toggle();
			return false;
		}).next().hide();

		// Image Rotator
		$(document).ready(function() {
			$('.slideshow').cycle({
				fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
				speedIn:  2500,
				speedOut: 500,
				delay:   -4000
			});
		});

	});


