// JavaScript Document
// This script does the cluetips for scripture references found in the for tabs.

$(document).ready(function(){
	$('.localtip').cluetip({
	activation: 'click', //Actovate by click.
	local:true, // enable local tool tip
	sticky:true, // keep visible until manually closed
	closePosition:'title', // location of close text for sticky cluetips; can be 'top' or 'bottom' or 'title'
	arrows:true, // if true, displays arrow on appropriate side of clueTip
	width:'auto', // The width of the clueTip
	fx: {             
                      open:       'fadeIn', // can be 'show' or 'slideDown' or 'fadeIn'
                      openSpeed:  '500'
    } 
	}); // associate function to the class "localtip"
}); // end of ready () function
