A zero-clutter jQuery image gallery.
No other animations or styling.
<script src='http://code.jquery.com/jquery-1.10.2.min.js'></script>
<script src='jquery.museum.js'></script>
<script>
$(document).ready(function() {
$.museum($('#content img'));
});
</script>
you may also add a fullsize data tag to the img element to load a different image in the gallery.
<img src="thumb.jpg" data-fullsize="large.jpg" />
var options = {
namespace: "msm", // for custom CSS class namespacing
padding: 25, // in case you would like a specific amount of padding on the lightbox
disable_url_hash: true, // disable using hashes in case your website already uses URL hashes for states
};
$.museum($('#content img'), options);