﻿/*Requires jQuery*/

$(document).ready(function() {
    AttachAboutNavEvents();
})

        
function AttachAboutNavEvents() {


    //loop thru each of the vocab links in the right nav and link its "source" div to the click event.
    $('.vocab_link').each(function(){
        
        var sourceID = this.id.replace('link', 'source');
    
        $(this).jHelperTip({
         trigger: "hover",
         dC: "#" + sourceID,
         source: "container",
         autoClose: true,
         leftOff: -350,
         topOff: -50,
         opacity: 1
         
        });
    });


  }  


