﻿jQuery(document).ready(function () {

    if (!jQuery("body").is(".EditMode")) {

        jQuery("a#tooltipHelpLink").qtip({
            content: jQuery('div#helpTooltipContent'),
            position: {
                corner: { target: 'bottomRight', tooltip: 'topRight' }
            },
            style: {
                width: 460,
                padding: 5,
                background: '#ffffff',
                color: 'black',
                textAlign: 'left',
                'float': 'left',
                'font-size': 12,
                border: {
                    width: 1,
                    radius: 0,
                    color: '#d1d1d1'
                },
                //tip: 'bottomRight',
                name: 'light' // Inherit the rest of the attributes from the preset light style
            }
        });

    }
    
});

