// fade thumbnail images
jQuery(function($){
$("div.thumb img").animate({ opacity: 0.75 }, 1); // Set opacity
$("div.thumb img").mouseover(function(){
$(this).animate({ opacity: 1}, 200);
});
$("div.thumb img").mouseout(function(){
$(this).animate({ opacity: 0.75 }, 200);
});
});
// lighbox
jQuery(function($) {
$("div#gallery a").lightBox();
});
