function bubblePopup() {

    $(".bubbleInfo").each(function() {

        var distance = 20;
        var time = 150;
        var hideDelay = 100;

        var hideDelayTimer = null;

        var beingShown = false;
        var shown = false;
        var trigger = $('.trigger', this);
        var info = $('.popup', this); //.css('opacity', 0);

        $([trigger.get(0), info.get(0)]).mouseover(function() {

            if (hideDelayTimer) clearTimeout(hideDelayTimer);
            if (beingShown || shown) {
                // don't trigger the animation again
                return;
            } else {
                var leftPadding = -25;
                if (trigger.html().match('Finance*')) {
                    leftPadding = -40;
                }
                // reset position of info box
                beingShown = true;

                var topPos = -65;
                if (trigger.offset().top > 400) {
                    topPos = -80;
                }
                info.css({
                    top: topPos,
                    left: leftPadding + trigger.position().left + trigger.width(),
                    display: 'block'
                }).animate({
                    left: '+=' + distance + 'px'/*,opacity: 1*/
                }, time, 'swing', function() {
                    beingShown = false;
                    shown = true;
                });
            }

            return false;
        }).mouseout(function() {
            if (hideDelayTimer) clearTimeout(hideDelayTimer);
            hideDelayTimer = setTimeout(function() {
                hideDelayTimer = null;
                info.animate({
                    left: '+=' + distance + 'px'/*,opacity: 1*/
                }, time, 'swing', function() {
                    shown = false;
                    info.css('display', 'none');
                });

            }, hideDelay);

            return false;
        });
    });
}
function ShowNotEnabled(){
            $.fn.colorbox({html:"<div style=\"width:455px\"><p class=\"h2_header2\" style=\"padding-top:3px;padding-left:0px;padding-bottom:60px;text-align: center;color:#777777;font-weight:bold;font-size:20px\">Thank you for visiting Build My Kubota Product Configurator.<br /><br/>We are currently updating this information. Please try back again at a later time.</p></div>"});
		}
