// JavaScript Document
// This script will open a google doc inside a cluetip.

$(document).ready(function(){
	$('.docslocaltip').cluetip({
	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'
	width:'692', // The width of the clueTip
	height:'625', // The height of the clueTip
	activation:'click', // set to 'click' to force user to click to show clueTip
                        // set to 'focus' to show on focus of a form element and hide on blur
	positionBy:'mouse', // Sets the type of positioning: 'auto', 'mouse','bottomTop', 'fixed'
	fx: {             
                      open:       'fadeIn', // can be 'show' or 'slideDown' or 'fadeIn'
                      openSpeed:  '500'
    } 
	}); // associate function to the class "docslocaltip"
}); // end of ready () function
function MM_effectAppearFade(targetElement, duration, from, to, toggle)
{
	Spry.Effect.DoFade(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
}
function MM_effectShake(targetElement)
{
	Spry.Effect.DoShake(targetElement);
}
