// JavaScript Document
$(document).ready(function(){
	$("#navList ul:visible").css('display','none');
	
	//var curSection = window.location.href.split('.com')[1].split('/')[1];
	var curSection = window.location.href.split('/').reverse()[1];
	$("#navList ul#"+curSection).show();
	$("#navList ul#"+curSection).prev().addClass('active');
	
	$("#navList span").click(function() {
		var checkElement = $(this).next();
		if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
			$("#nav>ul>li>ul:visible").slideUp('normal');
			$("#navList span").removeClass('active');
			return false;
		}
		if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
			$("#nav>ul>li>ul:visible").slideUp('normal');
			$("#navList span").removeClass('active');
			$(this).addClass('active');
			checkElement.slideDown('normal');
			return false;
		}
	});
	
	// The Overlays
		// Add class="iframe" to the link tag
	$(".iframe").colorbox({width:"85%", height:"96%", iframe:true});
		// Add rel="gallery1" to the link tag of all photos that would appear in gallery1
	$("a[rel='gallery1']").colorbox();
	$("a[rel='gallery2']").colorbox();
		// Add class="single" for a single picture
	$(".single").colorbox();
	$(".vidSm").colorbox({width:"320px", height:"270px", iframe:true});
	$(".pano").colorbox({width:"420px", height:"340px", iframe:true});
});