$(document).ready(function() {
	$("#menunav ul").hide();
	$("a.lead").click(function() {
		$("#menunav ul:not(this)").slideUp("slow");
		$(this).next().slideDown("slow");
		$(this).addClass("lead-to-close");
		
		return false;
	});
	
	$("a.lead-to-close").click(function() {
		$(this).next().slideUp("slow");
		$(this).removeClass("lead-to-close");
		return false;
	});
	/*
	Gallery specific stuff, this controls
	the transitions in and out and well as
	overlay colour and opacity of background
	*/
	$("a.gallery-item").fancybox({
		'type': 'image',
		'transitionIn': 'elastic',
		'transitionOut': 'elastic',
		'speedIn': 600, 
		'speedOut': 200,
		'overlayShow': true,
		'overlayColor': '#000',
		'overlayOpacity': '0.8',
		'autoscale': true,
		'titlePosition': 'over',
		'cyclic': true,
		'changeFade': '0'
	});
	
});

