jQuery(document).ready(function(){	

// Lightbox
$(function() {
	$(".lightbox").lightbox();
});     

$("#sidebar a, #pageGallery a, #buckets a").css("opacity","1.0"); 
$("#sidebar a, #pageGallery a, #buckets a").hover(function() {
	$(this).stop().css("opacity","0.8"); },
function() {
	$(this).stop().css("opacity","1.0"); 
});


						
});
