$(document).ready(function() {


	// accordian menu
	// Collapse everything but the first menu:
	//$("#nav > li > a").not(".current-page").find("+ ul").slideUp(1);
	
	// Expand or collapse:
	//$("#nav > li > a").click(function() {
	//	$(this).find("+ ul").slideToggle("fast");
		
	//	if ( $(this).hasClass('active') ) {
	//		$(this).removeClass('active');
	//	}
	//	else {
	//		$(this).addClass('active');	
	//		$("#nav > li > a").not(this).find("+ ul").slideUp(1);
	//		$("#nav > li > a").not(this).removeClass('active');
	//	}
	//});
	
	// Protect emails
	$("span.safemail").safemail();

	// Set up lightbox links
	$("a[rel=gallery]").fancybox({
		'overlayShow'	: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	$("a.video").fancybox({
		'width'				: 657,
		'height'			: 377,
		'autoScale'     	: false,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'type'				: 'iframe', 
		'padding' : 0, 
		'scrolling': 'no'
	});
	
	

	// Open links in a new tab
	$('a[rel="external"]').click(function(){
		this.target = "_blank";
	});
		
		 
	// clickable panels
	$(".clickable-panel").each(function() {
		var link = $(this).find("a").attr("href")

		if (link) {
			$(this).addClass("pointer")
			$(this).bind('click', function(){window.location = link});
		}
	});

	$("#nav-land").find("+ ul").slideDown(1);
	
	
});
