$(document).ready(function() {
	
//	Main ToolTip
$('.toolTipTest').bt({
	trigger: ['mouseover','click'],
	overlap:18,     	
	closeWhenOthersOpen: true, 
  contentSelector: "$(this).next().html()",
  positions: ['right', 'left'], 
  padding: 2, 
  width: 275, 
  spikeGirth: 20, 
  spikeLength: 30, 
  cornerRadius: 10, 
  fill: '#FFF', 
  strokeStyle: '#95CCF5', 
  shadow: true, 
  shadowBlur: 20,
  shadowOffsetX: 4,
  shadowOffsetY: 6, 
  postShow:function(box){
				if ($.browser.msie && $.browser.version.substr(0,1)<=8) {

					settings = {
						  tl: { radius: 10 },
						  tr: { radius: 10 },
						  bl: { radius: 0 },
						  br: { radius: 0 },
						  antiAlias: true,
						  autoPad: true,
						  validTags: ["div"]
					  };	
						$('.toolTip h2.title').corner(settings);
						$('.bt-content').parent().mouseleave(function(e,v) {				
							$('.bt-active').btOff();
						});
					}
					else{
						$('.bt-content .toolTip').mouseleave(function(e,v) {				
							$('.bt-active').btOff();							
						});

					}
				
			
			},
  cssStyles: {
    fontSize: '12px',
    fontFamily: 'arial,helvetica,sans-serif'
  }  
});

});
