$(document).ready(function(){
	
	// Hide things by JavaScript - means they're accessible even if JS isn't available
	$(".hidebyjs").hide();
	
	// Lightbox initialisation
	$(".fancybox").fancybox({
		'easingIn': 'easeOutQuint',
		'easingOut': 'easeOutQunt',
		'frameWidth': 550,
		'overlayOpacity': 0.5
	});
	
	// Dropdown functions	
	$("a.dropdown").toggle(function(){
		$("div"+$(this).attr("href")).animate({height:"show",opacity:"show" }, "slow");
		$(this).toggleClass('open');
	},function(){
		$("div"+$(this).attr("href")).animate({height:"hide",opacity:"hide" }, "slow");
		$(this).toggleClass('open');
	});
		
});
