$(document).ready(function() { 
    $("#scroller").simplyScroll({
      autoMode: 'loop'
    });
  });

$(function() {
  $('img[data-hover]').hover(function() {
    $(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');    }).each(function() {
    $('<img />').attr('src', $(this).attr('data-hover'));
  });;
});
$(function() {
  $('.rollover').hover(function() {
    var currentImg = $(this).attr('src');
    $(this).attr('src', $(this).attr('hover'));
    $(this).attr('hover', currentImg);
  }, function() {
    var currentImg = $(this).attr('src');
    $(this).attr('src', $(this).attr('hover'));
    $(this).attr('hover', currentImg);
  });
});

