$(document).ready(function() {
$("a.zoom, a[rel=zoom_group]").fancybox({
'autoScale': false,
'titleShow'	: true
});
$("a.zoom img").hover(function(){
  $(this).fadeTo(300, 0.4);
  },
  function(){
  $(this).fadeTo(400, 1.0); 
  });
});

