$(document).ready(function() {
     $('ul[id^=gallery_]').each(function() {
         var o = $(this);
         var id = o.attr('id');
         o.jmCarousel({
             cw: 715,
             ch: 226,
             showUnfocusedCount: 1,
             showTitle: true,
             titleContainer: $('#about_'+id),
             arrowNext: $('#right_'+id),
             arrowPrev: $('#left_'+id)
         }).bind('mousewheel', function(e, delta) {
            e.preventDefault();
             var o = $(this);
            if(delta < 0) o.jmCarousel('moveNext');
            else o.jmCarousel('movePrev');
         });
     });
});
