// set the timer data for a view slideshow
$(document).ready(function() {
  // these are the divs containing the elements to be displayed in the main div in rotation or mouseover
  slideshow_data["1"] = new views_slideshow_data(4, 5000, 1, true, "slow", 0.25);

  // this turns on the timer
  views_slideshow_timer("1", true);

  // this sets up the mouseover & mouseout to pause on the main element
  $("#views_slideshow_main_1").hover(
    function() {
      views_slideshow_pause("1");
    },
    function() {
      views_slideshow_resume("1");
    });

  /*slideshow_data["2"] = new views_slideshow_data(4, 5000, 1, true, "slow", 0.25);

  // this turns on the timer
  views_slideshow_timer("2", true);

  // this sets up the mouseover & mouseout to pause on the main element
  $("#views_slideshow_main_2").hover(
    function() {
      views_slideshow_pause("2");
    },
    function() {
      views_slideshow_resume("2");
    });

  slideshow_data["3"] = new views_slideshow_data(4, 5000, 1, true, "slow", 0.25);

  // this turns on the timer
  views_slideshow_timer("3", true);

  // this sets up the mouseover & mouseout to pause on the main element
  $("#views_slideshow_main_3").hover(
    function() {
      views_slideshow_pause("3");
    },
    function() {
      views_slideshow_resume("3");
    });*/
});
