/*!
 * Galleria alittlerevolution.com Theme
 * http://alittlerevolution.com
 *
 * Copyright (c) 2010, Aino
 * Licensed under the MIT license.
 */

(function($) {

Galleria.addTheme({
    name: 'osad',
    author: 'Like Rock',
    version: '1.0',
    css: 'galleria.osad.css',
    defaults: {
        transition: 'slide',
        transition_speed: 500,
        thumbnails: false,
        thumb_crop: 'height',
        carousel: false,
        image_crop: false,
        autoplay: true
    },
    init: function(options) {
        this.$('thumbnails').find('.galleria-image').css('opacity',0.5).hover(function() {
            $(this).fadeTo(200,1);
        }, function() {
            $(this).not('.active').fadeTo(200,.5);
        });
        this.$('info').insertAfter(this.target);
        this.bind(Galleria.LOADSTART, function(e) {
            if (!e.cached) {
                this.$('loader').show().fadeTo(200, .8);
            }
            $(e.thumbTarget).parent().stop().css('opacity',1).siblings('.active').css('opacity',0.5)
        });
        this.bind(Galleria.LOADFINISH, function(e) {
            this.$('loader').fadeOut(200);
        });
    }
});

})(jQuery);
