function init_css_buttons()
{
   var buttons = document.getElementsByClassName('cssButton');

   for(i=0;i<buttons.length;++i) {
      var b = buttons[i];
      b.onmousedown = function() {this.className = this.className.replace('cssButton ','cssButtonPress ');};
      b.onmouseup = function() {this.className = this.className.replace('cssButtonPress ','cssButton ');};

      //This it to compensate for browsers that don't support cssButton:hover in the CSS.
      b.onmouseover = function() {this.className += ' cssButtonHover';};
      b.onmouseout = function() {this.className = this.className.replace('cssButtonPress ','cssButton ').replace(' cssButtonHover','');};
   }
}

function cssb_down()
{
 this.className = this.className.replace('cssButton ','cssButtonPress ');
}

function cssb_up()
{
 this.className = this.className.replace('cssButtonPress ','cssButton ');
}

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
        document.write(unescape("%3Cscript src=" + gaJsHost + "google-analytics.com/ga.js type= ext/javascript\%3E%3C/script%3E"));
     
        var pageTracker = _gat._getTracker("UA-5771410-3");
        pageTracker._initData();
        pageTracker._trackPageview();
        