﻿     

/* 
$(function() {

    $('th.river').filter(':not(th.no-popup)').tooltip({ 
        track: true, 
        delay: 0, 
        showURL: false, 
        showBody: " - ", 
        // extraClass: "pretty fancy", 
        fixPNG: true, 
        //opacity: 1, 
        left: -55,
        top: -80,
        bodyHandler: function() {
            var idname = $(this).attr("id").replace(/[^\w]/g,'_');
            return $('#' + idname + '-phases').html();
        }
    });

});
*/    
