// JavaScript Document


$(document).ready(function () {	
	$("body").addClass("hasJS");
	
	$("#email-signup").click(function(){
		$("#email-list").slideToggle("slow");
		$(this).toggleClass("active");
		return false;
	});
	
	$("#thumbnails a").overlay({
		target: '#gallery',
		expose: '#000',
//		top: 10%,
		}).gallery({
		speed: 800,
		autohide: false,
	//	template: '<span>Image ${index} of ${total}</span>'
	});
	
	$(".notes a").overlay({
		target: '#gallery',
		expose: '#000',
//		top: 10%,
		}).gallery({
		speed: 800,
		autohide: false,
	//	template: '<span>Image ${index} of ${total}</span>'
	});

});

