﻿$(document).ready(function() {
    $.superbox();
    $('#gallery_thumbs .thumb').hover(thumb_over, thumb_out);


});

var thumb_over = function() {
    $(this).children('img').stop(true, false)
        .animate({
            opacity: .70
        }, 200);
}

var thumb_out = function() {
    $(this).children('img').stop(true, false)
        .animate({
            opacity: 1
        }, 200);
}

