$(document).ready(function() {
  if ( $('#gallery').length > 0 ){
    Galleria.loadTheme('http://kainc.com/js/galleria/themes/twelve/galleria.twelve.js');

    $("#gallery").galleria({
        height: 475,
        autoplay: 4000,
        maxScaleRatio: 1,
        minScaleRatio: 1
    });
  };
  
  if ( $('.slideshow').length > 0 ){
    $('.slideshow').cycle({
      random: true,
      pause: true,
      timeout: 6000
    });
  };
  
});
