$(document).ready(function() {
    $('#info a').hover(
        function() {
            var obj = $(this).parent().prev();
            if(obj.length == 0) return false;

            obj.attr('src', obj.attr('src').replace('.gif', '_active.gif'));
        },
        function() {
            var obj = $(this).parent().prev();
            if(obj.length == 0) return false;

            obj.attr('src', obj.attr('src').replace('_active', ''));
        }
    );

    $('ul[id^=gallery_]').each(function() {
         var o = $(this);
         var id = o.attr('id');
         o.jmCarousel({
             cw: 260,
             ch: 123,
             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');
         });
     });
});

