﻿$(document).ready(function() {
    
});


function showBranch(branch) {    
    $("span.branch").each(function(i) {
        this.style.display = "none";    
    });               
    $("#" + branch).css("display","block");    
}

/*Event.observe(window, 'load', function() {
   if (!window.XMLHttpRequest) {
      // IE6, older browsers       //new HoverBehavior('tr');
      $$('table.hover tr').each( function(e) {
         Event.observe(e, 'mouseover', function() {
         Element.addClassName(e, 'hover');
         });
         Event.observe(e, 'mouseout', function() {
         Element.removeClassName(e, 'hover');
         });
      });
   }
});*/
