// Slide para home
$(document).ready(function() {

// heeeeeeeeeeere we go.
$("#chained").scrollable({circular: true, mousewheel: true}).navigator().autoscroll({
	interval: 3000		
});	

     $('.scroll a').click(function(){
		var destino = $(this).attr('title');
          $('html, body').animate({
          scrollTop: $("#"+destino).offset().top
          }, 1000);
          return false;
     });

// Add VideoJS to all video tags on the page when the DOM is ready
VideoJS.setupAllWhenReady();

});
