$(document).ready(function(){
$('#wave').jani({ frameWidth: 400, frameHeight: 301, speed: 130, totalFrames: 6 });
$('#homepage-content')
.mouseover(function(){
  $('#wave').stop().jani.play()
  })
.mouseout(function(){
  $('#wave').stop().jani.stop()
  });
$('#header')
.mouseover(function(){
  $('#wave').stop().jani.play()
  })
.mouseout(function(){
  $('#wave').stop().jani.stop()
  });
//$('#wave').jani.play();
});


