/**
 * Add ColorBox to all links with rel="lightbox"
 */
$(function() {
	$("a[rel='lightbox']").colorbox();
});


$(function() {
	$("a.panoThumb").colorbox({
		inline: true,
		href: function() { return $(this).attr('href'); },
		onOpen: function() {
			var divid = $(this).attr('href');
			$(divid).css('display', 'block');
		},
		onCleanup: function() {
			var divid = $(this).attr('href');
			$(divid).css('display', 'none');
		}
	});
});