﻿$(document).ready(function () {
  
  window.jQuery = window.$ = $telerik.$;

  if ($('#slideshow').length == 1) {
    $('#slideshow').fadeSlideShow({
      width: 960, // default width of the slideshow
      height: 565, // default height of the slideshow
      speed: 'slow', // default animation transition speed
      interval: 5000, // default interval between image change
      PlayPauseElement: false, // default css id for the play / pause element
      PlayText: 'Play', // default play text
      PauseText: 'Pause', // default pause text
      NextElement: false, // default id for next button
      NextElementText: 'Next >', // default text for next button
      PrevElement: false, // default id for prev button
      PrevElementText: '< Prev', // default text for prev button
      ListElement: false, // default id for image / content controll list
      ListLi: 'fssLi', // default class for li's in the image / content controll 
      ListLiActive: 'fssActive', // default class for active state in the controll list
      addListToId: false, // add the controll list to special id in your code - default false
      allowKeyboardCtrl: true, // allow keyboard controlls left / right / space
      autoplay: true // autoplay the slideshow
    }
  );
  }
  if ($('.scroll-pane').length > 0) {
    $('.scroll-pane').jScrollPane({
      verticalDragMinHeight: 20,
      verticalDragMaxHeight: 20,
      horizontalDragMinWidth: 20,
      horizontalDragMaxWidth: 20,
      showArrows: true,
      horizontalGutter: 10,
      hijackInternalLinks: true,
      maintainPosition: false,
      stickToBottom: true
    });

  }
});

