/*  Using the other library, slideshow  

$(document).ready(function(){
  $("#slideshow").slides({
    preload: true,
    play: 5000,
    pause: 1000,
    hoverPause: true,
    pagination: false,
    generatePagination: false
  });
}); */

$(document).ready(function() {
    $('.slideshow_container').cycle({
                fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
                timeout: 6000,
                speedIn: 1000,
                speedOut: 1000
        });
});

