/*
==========================================================================================================
Filename:	mbTooltip.config.js
Purpose:	provides js file for configuration vars that were in page in demo
Dependencies: _js/mbTooltip.js
Date:	2010-03-02
Author:	Stephen M. Carlson, XI Interactive, Inc. - http://www.xiinteractive.com
Revision history: 	
==========================================================================================================
*/
$(function(){
    $("[title]").mbTooltip({ // also $([domElement]).mbTooltip  >>  in this case only children element are involved
      opacity : .97,       //opacity
      wait:1,           //before show
      cssClass:"default",  // default = default
      timePerWord:1000,      //time to show in milliseconds per word
      hasArrow:false,			// if you whant a little arrow on the corner
      hasShadow:true,
      imgPath:"_images/",
      ancor:"mouse", //"parent"  you can ancor the tooltip to the mouse position or at the bottom of the element
      shadowColor:"black", //the color of the shadow
      mb_fade:100 //the time to fade-in
    });
  });
/* --- end of file ======================================================================================= */
