$(document).ready(function() {
	$.extend({
		getBubbleDropShadow: function(title, id) {
			$('#' + id).bt(title,
			{
				fill: '#fff',
				cornerRadius: 10,
				strokeWidth: 1,
				strokeStyle: '#004668',
				shadow: true,
				shadowOffsetX: 3,
				shadowOffsetY: 3,
				shadowBlur: 5,
				shadowColor: 'rgba(0,70,104,.9)',
				shadowOverlap: false,
				noShadowOpts: {strokeStyle: '#999', strokeWidth: 2},
				positions: ['right', 'top'],
				trigger: ['focus', 'blur']
			});
		},
		getBubbleDropShadow2: function(title, id) {
			$('#' + id).bt(title,
			{
				fill: '#fff',
				cornerRadius: 10,
				strokeWidth: 1,
				strokeStyle: '#004668',
				shadow: true,
				shadowOffsetX: 3,
				shadowOffsetY: 3,
				shadowBlur: 5,
				shadowColor: 'rgba(0,70,104,.9)',
				shadowOverlap: false,
				noShadowOpts: {strokeStyle: '#999', strokeWidth: 2},
				positions: ['right', 'top'],
				trigger: 'mouseover'
			});
		}
	});
});
