

$(document).ready(function() {

  $('.gallery a').lightBox({fixedNavigation: true});

//  $('.gallery img').css({opacity: 0}).load(function() {
//    $(this).animate({opacity: 1.0}, 500);
//  });

//  $('.contents').css({opacity: 0}).animate({opacity: 1.0}, 500);

  $('#logotype img, #menu img, .gallery img').hover(
    function() {
      $(this).animate({opacity: 0.5}, 200);
    },
    function() {
      $(this).animate({opacity: 1.0}, 200);
    }
  );

});




