$(function(){
	$('div.lightbox').each(function(){
		$(this).find('a').lightBox({overlayOpacity: 0.65});
	});
	$('#small_photos a').mouseover(function(){
		$('#enlarge').attr('src', this.href);
	});
	// preload rollovers
	$.preload(jQuery.map($('#small_photos a'), function(obj){return obj.href;}));
});