// JavaScript Document
$(document).ready(function(){
	// The Nav Menu
	$("#navList").treeview({
		animated: "fast",
		collapsed: true,
		unique: true,
		persist: "cookie",
		toggle: function() {
			window.console && console.log("%o was toggled", this);
		}
	});
	
	// 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});
});