﻿$(document).ready(function() {
    $("img.morehelp").bt({
        positions: 'most',
        padding: 20,
        width: 200,
        spikeLength: 20,
        spikeGirth: 20,
        cornerRadius: 20,
        fill: 'rgba(12, 12, 12, .9)',
        strokeWidth: 3,
        textzIndex: 9999,
        boxzIndex: 9998,
        wrapperzIndex: 9997,
        strokeStyle: '#EE7E00',
        cssStyles: { color: '#FFF', fontWeight: 'bold', fontFamily: 'Arial', fontSize: '11px', lineHeight: '15px' },
        trigger: ['mouseover', 'mouseout'],
        showTip: function(box) {
            $(box).show();
        },
        hideTip: function(box, callback) {
            $(box).hide();
        }
    });
});
$(document).ready(function() {
    $("span.infoHelper").bt({
        positions: 'most',
        padding: 20,
        width: 200,
        spikeLength: 20,
        spikeGirth: 20,
        cornerRadius: 20,
        fill: 'rgba(12, 12, 12, .9)',
        strokeWidth: 3,
        textzIndex: 9999,
        boxzIndex: 9998,
        wrapperzIndex: 9997,
        strokeStyle: '#EE7E00',
        cssStyles: { color: '#FFF', fontWeight: 'bold', fontFamily: 'Arial', fontSize: '11px', lineHeight: '15px' },
        trigger: ['mouseover', 'mouseout'],
        showTip: function(box) {
            $(box).show();
        },
        hideTip: function(box, callback) {
            $(box).hide();
        }
    });
});

