//<![cdata[
<!--
document.write('<style type="text/css">.tabber{display:none;}<\/style>');

//nest generic scripts
document.write("<script type='text/javascript' src='/watl/interface/tabs/cookie.js'><\/script>");

/*==================================================
  Set the tabber options (must do this before including tabber.js)
  ==================================================*/
var tabberOptions = {
  'cookie':"tabber", /* Name to use for the cookie */
  'onLoad': function(argsObj){
    var t = argsObj.tabber;
    var i;

    /* Add the id of the tabber to the cookie name  for multiple tabber interfaces.*/
    if (t.id) {
      t.cookie = t.id + t.cookie;
    }

    /* If a cookie was previously set, restore the active tab */
    i = parseInt(getCookie(t.cookie));
    if (isNaN(i)) { return; }
    t.tabShow(i);
  	},

  	'onClick':function(argsObj){
    var c = argsObj.tabber.cookie;
    var i = argsObj.index;
    setCookie(c, i);
  }
};

//-->
//]]> 
