

$(document).ready(function() {
    //setup toggle for help text divs
    $("a.show-help").toggle(function(){
        $("div.help-text").fadeIn(500);
    },function(){
        $("div.help-text").fadeOut('slow');
    });
    
});
