	    $(function() {
	    	$('.tipContent').hide();
	    	
	    	$('.tipTarget').hover(
				function() 
				{
					$(this).addClass('showTip');
				}, 
				function() 
				{							
					$(this).removeClass('showTip');
				});
			
			$('.tipTarget').bt({
			  contentSelector: "$('.showTip ~ .tipContent')",
			  positions: ['right', 'left'],
			  fill: '#F4F4F4',
			  strokeStyle: '#666666', 
			  spikeLength: 20,
			  spikeGirth: 10,
			  width: 350,
			  overlap: 0,
			  centerPointY: 1,
			  cornerRadius: 0, 
			  cssStyles: {
			    fontFamily: 'Tahoma,"Lucida Grande",Helvetica,Arial,Verdana,sans-serif', 
			    fontSize: '13px',
			    color: '#111111',
			    padding: '10px 14px'
			  },
			  shadow: true,
			  shadowColor: 'rgba(0,0,0,.5)',
			  shadowBlur: 8,
			  shadowOffsetX: 4,
			  shadowOffsetY: 4
			});
		});
