function InitToolTip (TheWrapperDiv,DescIndex)
	{
	jQuery(function(){jQuery('#'+TheWrapperDiv).tooltip({
            delay: 0,
            showURL: false,
            bodyHandler: function() {
				//alert(this.innerHTML);
                return jQuery("<img/>").attr("src",window.CurrentToolTipPicSrc[DescIndex]);
            }
        });});
	}
