$(function () {
	$('#content #press ol li a').each(function() {
		$(this).attr('href', '#');
		$(this).click(function() {
			var title = $(this).attr('title');
			if (title == undefined) throw "title not defined";
			embedGallery(title);
		});
	});
	embedGallery('print');
});
