$(document).ready(function() {
	$("#lightBox").click(function () {
		$('#lightBox').fadeOut(250);
	});
	$("#pictureList a").click(function () {
		$('#lightBox img').attr('src', this);
		$('#lightBox').fadeIn(250);
		return false;
	});
});
