MOA Text v1.0.0 - Mouse Over Animation for Text in jQuery
Written by Osamu AKAMATSU (Bitmeister Inc.)

Files:
  jquery.moatext.js
  jquery.moatext-min.js

Copyright (c) Bitmeister Inc.

This software is under the MIT license (MIT-LICENSE.txt).

For Developers
http://sourceforge.jp/projects/moatext

For Users (japanese language site)
http://labs.bitmeister.jp/moamoa/

Bitmeister Inc.
http://www.bitmeister.jp

@author Osamu AKAMATSU (Bitmeister Inc.)
@version 1.0.0

You can use this jQuery plugin for adding flavor to your web site.
By this plugin, text messages on your site are animated at mouseover (and mouseout).

Usage
  Call the moatext() function or set prefixed class on your page.

  By function
    $(selector).moatext(options)
    
    <script type="text/javascript" language="JavaScript"><!--
      $(function(){
        $(".moamoa").moatext();
      });
    // -->
    </script>
    
    <div class="moamoa">This message is animated!</div>
    
    *If moatext() is called no parameter, default effect 'lens' is performed.
  
  By prefixed class
    <div class="moatext_lens">This message is animated!</div>
    
    class             description
    ----------------------------------
    "moatext_lens"    'lens' effect
    "moatext_wave"    'wave' effect
    "moatext_opacity" 'opacity' effect
    
    *About effects, please read below.
  
options

  effect:[effect1,effect2...]
    "lens"        animate font-size (default)
    "wave"        animate top and right margin
    "opacity"     animate opacity
  oneway:{true/false}
    true          perform only one animation at mouseover.
    false         perform all animations at mouseover (and mouseout). (default)
  values:{effect:{base:base-value,enter:enter-value,leave:leave-value},...}
    effect = "lens"
                CSS 'font-size' value.
    effect = "wave"
                CSS 'top' and 'left' value.
    effect = "opacity"
                CSS 'opacity' value.
    base-value  Used at on loading the page.
    enter-value Used at entering mouse.
    leave-value Used at leaving mouse.
  hover:[function1,function2]
     function    replace the animate function launched at mouseover to the user-customized hover functions
                 Attention: If this option is used, all the other options are ignored.
                 default : null (don't replace)
  easing:
     xxxx        animation easing value
                 default : linear

  parser:
    jQuery.fn.moatext.parser_bychar    animate each characters.(default)
    jQuery.fn.moatext.parser_byword    animate each words.
    null                               animate all.

  action_type:
    "cont"      Next animation is continued when the mouseover animation is over. (default)
    "hover"     Animation is invoked at both mouseover and mouseout.
    "over"      Animation is invoked only at mouseover.
