$(document).ready( function() {

	$('.stimulator span[title]').qtip({
		style:
		{
			border:
			{
				width: 2,
				radius: 4,
				color: '#FFAB74'
			},
			background: '#FFFFFF',
			color: '#021E08',
			padding: 10,
			textAlign: 'center',
			fontSize: 11,
			tip: true
		},
		position:
		{
			corner:
			{
				tooltip: 'topRight',
				target: 'bottomLeft'
			}
		}
	});
});
