$(document).ready(function () {
	$heritageGallery = $('#heritageGallery');
	$('.years', $heritageGallery).hide();
	$('ul', $heritageGallery).jcarousel({
		buttonPrevHTML: '<div class="next">Previous</div>',
		buttonNextHTML: '<div class="next">Next</div>'
	});
	$('a', $heritageGallery).click(function() {
		$this = $(this);
		$box = $($this.attr('href'));
		$.nyroModalManual({
			content: $box.clone(),
			minWidth: 500,
			minHeight: 366
		});
		return false;
	});
});
