私はからfancyboxを使用しています:
http://fancyapps.com/fancybox/
また、スクロール ペインが正しく機能しておらず、以下のコードで何か問題があるのではないかと思いました。ペインは追加されましたが、スクロールバー自体は追加されていないため、fancyboxの後に起動する必要があると想定していますが、以下で行ったことに問題がある可能性があります
var scrollpane;
$(document).ready(function() {
// start up the overlay
$("a#addtatic-overlay").fancybox({
helpers: {
overlay : {
opacity: 0.35
}
},
'afterLoad' : (function(){
//custom scroll bar
scrollpane = $('.scroll-pane').jScrollPane();
}),
'afterClose' : (function(){
scrollpane.destroy();
})
});
// Slider
$("#slidecontainer").muslider({
"animationtype": "horizontal",
"animationduration": 600,
"height": 500,
"width": 835
});
// Forms
$("input, textarea, select").uniform();
});