$(function () {
    
    var api = $(".gallery-images").scrollable({
        items: '.gallery-items' 
       ,speed: 400
       ,api: true
       ,size: 5
       ,clickable: false
       ,onBeforeSeek: function() { 
           this.getItems().fadeTo(300, 0.2);
       }
       ,onSeek: function() { 
           this.getItems().fadeTo(300, 1);
       }
    });
    
    $(".gallery-items div.gallery-image").click(function() {
        window.open(WEBROOT + '/e-news/?eid=' + $(this).attr('rel'));
        return false;
    });
});
