﻿// execute your scripts when DOM is ready. this is a good habit
$(function() {
    // initialize scrollable 
    $(".scroll").scrollable({
        size: 1,
        items: '.pics',
        hoverClass: 'hover',
        loop: true
    });
});
