// attach the following to the click event for the spotlight container
$(document).ready(function() {
	$(".spotlight_thumbnail").click(function() {
		$('#spotlight_main_image').attr('src', this.src);
		$('#spotlight_main_link').attr('href',$(this).attr('longdesc'));
		$('#spotlight_main_link').html(this.alt);
		$('#spotlight_main_blurb').html(this.title);
	});
});

// for picture lightbox overlay
$(function() {
    $('#gallery a').lightBox();
});

// for document lightbox overlay after AJAX call
function Show_Popup(url) {
	$('#newwindow #popup_content').text('');
	$('#newwindow #popup_content').load(url);
	$('#popup').fadeIn('fast');
	$('#newwindow').fadeIn('fast');
}

function Close_Popup() {
	$('#popup').fadeOut('fast');
	$('#newwindow').fadeOut('fast');
}
