MOA Text v0.2.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 0.1.0

You can use this jQuery plugin for adding flavor to your web site.
By this plugin, text messages on your site are animated on mouse over.

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 (This effect is not fully supported on css standard-compliant mode of IE.)
  oneway:{true/false}
    true        effect only at mouseover
    false       effect at mouseover and mouseleave (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
