$(document).ready(function() {
	/* Tooltip */
	$('.tips').each(function(it){
		$(this).tipsy({ gravity: $.fn.tipsy.autoNS, html:true });
	});

	/* Tooltip Help */
	$('.help').each(function(){
		var id = $(this).attr('id');
		if (id != '') {
			$(this).css('cursor', 'help');
			$.get('/api/help/tip', { 'id': id }, function(data){
				$('#' + id).attr('original-title', data);
				$('#' + id).tipsy({ gravity: $.fn.tipsy.autoNS, html: true });
			});
		}
	});
});

