
/* ----- First Version ----- 

$(document).ready(function() {

  $('a.load-local').cluetip({local:true, cluetipClass: 'jtip', cursor: 'pointer', arrows:true, dropShadow: false, width:410});

});

*/

/* ----- Second clueTip version with auto placement -----

$('#examples a:eq(4)').cluetip({
  hoverClass: 'highlight',
  sticky: true,
  closePosition: 'bottom',
  closeText: '<img src="styles/cross.png" alt="" />'
  truncate: 60
});

 */
 
$(document).ready(function() {
 
	$('a.load-local').cluetip({

		local: true,
		cluetipClass: 'jtip', 
		cursor: 'pointer',
		arrows:true,
		dropShadow: false,
		width: 410
	
	});

});
  




