/***************************************************************\
| |\  /|                                                We Put  |
| | >< Hypercosm           internet_toolbar.js          3d      |
| |/  \|                                                To Work |
|***************************************************************|
|                                                               |
|        This file defines the Javascript behaviors of a        |
|        specific type of SketchUp user interface toolbar.      |
|                                                               |
|***************************************************************|
|                Copyright (c) 2007 Hypercosm, LLC.             |
\***************************************************************/


//
// "class" constructor
//


function internetToolbar(element, parent) {

  // call superclass constructor
  //
  toolbar.call(this, element, null, parent);
  
  // add buttons to toolbar
  //
  this.mailButton = new mailButton("mailButton", this);
  this.linkButton = new linkButton("linkButton", this);
  
  return this;
}    // internetToolbar


// inherit prototype from "superclass"
//
internetToolbar.prototype = new toolbar();
