$(document).ready(function() { $('.click').click(function(e) { e.preventDefault(); $('.point--container').hide(); $('.close').hide(); id = $(this).parent().parent().attr('id'); $('#' + id + ' .point--container').fadeIn(); $('#' + id + ' .close').fadeIn(); }); $('.close').click(function(e) { e.preventDefault(); $('.point--container').hide(); $('.close').hide(); }); var $root = $('html, body'); $('.info').click(function(e) { e.preventDefault(); tab = $(this).data('tab'); system = $(this).data('system'); $('#tabLink_' + tab).click(); $('#f786b9db_'+system+' h3').click(); topTab = ($('#f786b9db_'+system+' h3').offset().top); $root.animate({ //scrollTop: $(this.hash).offset().top - 150 scrollTop: topTab - 175 }, 1000); }); });