tjh = {};

tjh['tooltips'] = {};
tjh.tooltips['text'] = {
'index.html': 'Homepage',
'page2.html': 'Current/last week',
'archive.html': 'thursdays overviews',
'archive_daily.html': 'selected recordings from the daily classes',
'archive_shir.html': 'Rabbi David Katz classes',
'hw.html': 'members reports',
'ModernHebrew.html': 'Prof. Uri  modern hebrew course',
'page5.html': 'Music presentations',
'page6.html': 'Holidays recording',
'page7.html': 'Music lyrics, special recordings',
'page8.html': 'Photo album, special announcements, banner killer',
'page9.html': 'Jewish resources',
'page10.html': 'Dedications in honor of loved ones',
'page11.html': 'Loving memory of departed members',
'AboutUs.html': 'Bio, Action Videos',
'page13.html': 'New videos',
'radio.html': 'thejewishhome.org Radio station'
    };


tjh.tooltips['add_tooltips_to_dom'] = function() {
    $("#tjhnavigation>div").each(function (i) {
     var link = jQuery("a", this).get(0).href;
     var linkparts = link.split("/");
     var pagename = linkparts[linkparts.length - 1];
     if (tjh.tooltips.text[pagename])
         {
             this.onmouseover = function(){Tip(tjh.tooltips.text[pagename]);};
             this.onmouseout = function(){UnTip();};
        }
    });
    
};

tjh.tooltips['init'] = function() {
  tjh.tooltips.add_tooltips_to_dom()
};

$(document).ready(tjh.tooltips.init);
