$(document).ready(function(){
	$("a[id='openPhotoGallery']").click(
		function () { 
			openGallery(photoGalleryTrackingId); 
			return false;
		}
	);
});

// Common functions
function toggleDetails(category, action) {
	if (action == "show") {
		if ($("#" + category + "_more_details").is(":hidden")) {
			$("div[id$='_more_details']").hide();
			$("#" + category + "_more_details").fadeIn();
		}
	} else if (action == "hide") {
		$("#" + category + "_more_details").fadeOut();
	}
}

function openGallery(trackPageId) {
	if (document.location.protocol != "file:" && document.location.host != "localhost") { 
		pageTracker._trackPageview(trackPageId);
	}
	$.prettyPhoto.open(images, titles, descriptions);
}

