function initToolTip(){
	$(".toolTip").each(function(index) {
    	if(this.title!=""){
	    	$(this).hover(
	    		function(){
		    		var bodyObj = document.getElementsByTagName('BODY')[0];
					var divObj = document.getElementById('toolTip');
					if(!divObj){
						var divObj = document.createElement("div");
						divObj.id = "toolTip";
						divObj.className = 'absZ toolTipHelp';
						bodyObj.appendChild(divObj);
						$(divObj).hide();
					}
					if(!this.tmpTitle){
						this.tmpTitle = this.title;	
						this.title = '';
					}
					divObj.innerHTML = this.tmpTitle;
				 	var posObj = $(this).offset();
					divObj.style.left = (posObj.left-30) + 'px';
					divObj.style.top = (posObj.top-25) + 'px';
					$(divObj).fadeIn("slow");
					$(divObj).show();
	    		},
	    		function(){
		    		$("#toolTip").fadeOut("medium");
	    		}
	    	);
    	}
 	});
}


