jQuery(document).ready( function($) {
    $("#last_reviewed, #last_modified").cluetip({
         local:true // get contents locally (ie, from same page and not via Ajax)
		,cluetipClass:'jtip' // jtip theme styling (see the jquery.cluetip.css file)
		,hideLocal:true // hide the local contents
		,arrows:true // display the 'arrow' for the cluetip
		,showTitle:false // don't show the title bar in the cluetip
		//,activation:'click' // click on the element to show the cluetip (not mouseover)
		//,closeText: '[X] Close'
		//,closePosition:'bottom' // the location of the 'close' button
		//,sticky:true // the tip does not go away after click
    });
});    

