$(document).ready(function() {
    $('button').hover(function() {
      $(this).addClass('hoverme');
    }, function() {
      $(this).removeClass('hoverme');
    });
  });
  
  
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel();
});
