soundManager.flashVersion = 9;
soundManager.flash9Options.usePeakData = true;
soundManager.url = '/swf/';
soundManager.debugMode = false;
    
soundManager.allowPolling = true;
soundManager.onload = function() {
var sound = soundManager.createSound({
  id: 'helloWorld',
  url: '/sound/water.mp3',
    whileplaying: function() {
      var peak = this.peakData.left * 2 + 0.5;
      if (peak > 1) peak = 1;
      $('#site-title span').animate({
        fontSize: peak + 'em'
      }, 20);
    }
  });
  //sound.play();
};

