function TableStylist() {
  this.applyStyle();
}

/**
 *  Apply style to table so that javascript
 *  rollovers will work
 */
TableStylist.prototype.applyStyle = function() {

  // Striping
  $('table.data-table tr:odd').addClass("alt");
    
  // Animations
  $('table.data-table tr').mouseover( function() {
    $(this).addClass("over");
  });
  
  $('table.data-table tr').mouseout( function() {
    $(this).removeClass("over");
  });
  
  /** Glowing buttons */  
  $('table.data-table .glow-buy-btn').glowbuttons({
    from: "#7ABF35",
    to: "#80FF00",
    speed: 300
  });
  
  $('table.data-table .glow-limited-btn').glowbuttons({
    from: "orange",
    to: "#80FF00",
    speed: 300
  });
  
  $('table.data-table .glow-soldout-btn').glowbuttons({
    from: "#000000",
    to: "#000000",
    speed: 300
  });
  
}