$(document).ready(function () {
	/*$("#subnav strong").click(function () {
		var index = $("#subnav strong").index(this);
		$("#subnav li ul").each(function(i) {
			if (i === index) {
				$(this).slideToggle("slow");
			} else {
				$(this).slideUp("slow");
			}
		});
	});*/
	$("div.photo a").fancyZoom({scaleImg: true, closeOnClick: true, directory: "/images/"});
});