$(document).ready(function() {
	$('a.tips').cluetip({
		cluetipClass: 'tips',
		width: 400,
		closePosition: 'top',
		splitTitle: '|',
		closeText: '<u>close</u>',
		waitImage: false,
		showTitle: false,
		sticky: true,
		activation: 'click',
		cursor: 'pointer'
	});
	
	$('a.resources').cluetip({
		width: 700,
		sticky: true,
		closeText: '<u>close</u>',
		showTitle: false,
		cluetipClass: 'tips',
		waitImage: false, 
		ajaxCache: true,
		activation: 'click',
		cursor: 'pointer'
		
	});

});