// JavaScript Document
var main = {
init: function() {
$.fn.hoverscroll.params = $.extend($.fn.hoverscroll.params, {
debug: true
});
$('#my-horizontal-list, #my-list').hoverscroll();
$('#my-vertical-list').hoverscroll({
vertical: true,
width: 160,
height: 1000,
fixedArrows: true
});
// $("#my-horizontal-list")[0].startMoving(1, 5);
$('#example-source').hide();
}
};
$(document).ready(function() {
main.init();
}); 
