$(function() {
        // Select all links whose attribute rel starts with lightbox
        $('a[rel^=lightbox]').lightBox();
  });



$(document).ready(
  function(){
    $(".photo1 img , .photo2 img , #atRandom li img , #today li img").hover(function(){
       $(this).fadeTo("normal", 0.6); // マウスオーバーで透明度を60%にする
    },function(){
       $(this).fadeTo("normal", 1.0); // マウスアウトで透明度を100%に戻す
    });
  });
