
Spry.Utils.addLoadListener(function() {

// BeginWebWidget YUI_TabView: yuitabview1 
 
      (function() { 
        var cn = document.body.className.toString();
        if (cn.indexOf('yui-skin-sam') == -1) {
          document.body.className += " yui-skin-sam";
        }
      })();
      
      var yuitabview1 = new YAHOO.widget.TabView('yuitabview1');
          
      // The following event subscribers demonstrate how to handle
      // Tab "Click" events.
      //
      // The event handler is written as an inline, anonymous function,
      // but it can also be a reference to a declared function.
      // Remove the comments to the subscriber code below to use it.
      //
      // See: http://developer.yahoo.com/yui/tabview/ for more 
      // information on all of YUI TabView's events.
      //
      // The YUI TabView API cheatsheet can be found at:
      // http://yuiblog.com/assets/pdf/cheatsheets/tabview.pdf
      //
      //--- begin tab references ---//
      // var tab0 = yuitabview1.getTab(0);
      // var tab1 = yuitabview1.getTab(1);
      // var tab2 = yuitabview1.getTab(2);
      //--- end tab references ---//
      //
      //--- begin event subscribers ---//      
      // tab0.on("click", function(event) {  });
      // tab1.on("click", function(event) {  });      
      // tab2.on("click", function(event) {  });      
      //--- end event subscribers ---//
    

// EndWebWidget YUI_TabView: yuitabview1 
      

});

