I have a slideToggle that shows/hides a table.
jQuery
$("#featMoreInfo").click(function() {    
    $("#featben2").slideToggle('slow');
    var txt = $(this).text() == '+ More Info' ? '- Minimize' : '+ More Info';
    $(this).text(txt);
});
$("#featMoreInfo2").click(function() {
    $('html, body').animate({ scrollTop: 0 }, 'slow');
    $("#featben2").slideToggle('slow');
    $("#featMoreInfo").text('+ More Info');
});
I have a javascript tooltip in some of the columns. Occationally whenever you click + More Info the alignment gets thrown off. Has anyone had this issue before? 

