// Tab controls for the machine pages
// Written by Rob Martin, Rockstar Design

$(document).ready(function() {
  $('div.tabs li').click(function() {
    $(this).addClass('tab-show').siblings().removeClass('tab-show');
    $('div#detailbox div.active-tab').fadeOut().removeClass('active-tab');
    $('#tabbed' + $(this).attr('id').slice(-1)).addClass('active-tab').fadeIn();
  });
});