function initCaptchaTip()
{
    var captchaWhat = $('img.captcha_what');
    if ($(captchaWhat).length) {
        if($(captchaWhat).data("qtip")) {
            $(captchaWhat).qtip("destroy");
        }
        $(captchaWhat).qtip({
            content: {
                text: 'The humanizer image helps us to prevent spam form submissions. Please enter the text that you see in the image to the left in the text box below. If you are having difficulty reading the text, you may click the image to get a new image with different text and you are always welcome to call our offices as well.'
            },
            show: 'mouseover',
            hide: 'mouseout',
			position: {
			  corner: {
				 target: 'bottomLeft',
				 tooltip: 'topRight'
			  }
			}
        });       
    }
}
