$(document).ready(function() { $('#reports-nav a').click(function() { // Change the clickable button for the tab $('.onreports').removeClass('onreports'); $(this).parent().addClass('onreports'); // Show the appropriate div $('.reports-listing').hide(); $("#" + $(this).attr('class')).show(); return false; }); });