// JavaScript Document
$(document).ready(function() {
  $("#chained").css("opacity",0).delay(500).animate({"opacity":1}, 500, function(){
    $(this).scrollable({circular: true, mousewheel: true}).navigator().autoscroll({
    	interval: 4000		
    });
  });
});
