// JavaScript Document

$(document).ready(function(){
	$('.PastorDanBioTip').cluetip({
	activation: 'hover', //Actovate by click.
	sticky:true, // keep visible until manually closed
	closePosition:'title', // location of close text for sticky cluetips; can be 'top' or 'bottom' or 'title'
	arrows:false, // 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
