﻿  $(function() {  
        $("#scrollable").scrollable({horizontal:true});  
    }); 
$(function() {
 // <a href="http://hogehoge/" rel="lightbox"> な要素
 $('a[rel*=lightbox]').lightpop();
 // <a href="http://hogehoge/" class="lightpop"> な要素
 $('a.lightpop').lightpop();
 // 画像ファイルへのリンク
 $('a[href$=.jpg], a[href$=.gif], a[href$=.png]').lightpop();
 // YouTube へのリンク
 $('a[href*=.youtube.com/watch]').lightpop({contentBorder:'2px solid silver',YouTube:{enabled:true,param:{'hl':'ja','autoplay':'0','fmt':'22'}}});
});

