
var branchInfoPanelTimer = null;

function initInfoBar() {
	
	$(".branchesInfoTooltip").each(function (){ 
		//$(this).children(".branchesInfoTooltipContent").find(".appsDefaultText11").css("color", "#FFFFFF");
		
		$(this).hover(function (){
		//$(".branchesInfoBarList").hover(function (){	
			$(this).css("cursor", "help");
		} , function (){
			$(this).css("cursor", "default");
		});
		
		$(this).qtip({
			content: $(this).children(".branchesInfoTooltipContent").html(),
			position: {
					corner: {
				 		tooltip: 'bottomMiddle', 
						target: 'topMiddle' 
					}
			},
			style: {
				border: {
			         width: 1,
			         radius: 2,
			         color: '#222222'
				},
				tip: true,
				width: ($(this).children(".branchesInfoTooltipContent").width() + 60),
				background: '#222222',
				color: '#FFFFFF'
			},
			show: { 
				delay: 100 
			}
			
           	
		});
	});
	
}
