function tabberMenu(menuArray,color,color2)
{  
  if(color2 == ''){ color2 = '1F2323';}
  this.menuArray = menuArray;
 
  this.show = function(containerID){
    for(tab in menuArray){

     var exp = new RegExp("^[0-9-.]*$","g");
     if(exp.test(tab)){
      document.getElementById(menuArray[tab]).style.display = "none";
      document.getElementById(menuArray[tab] + '_btn').style.backgroundPosition = "bottom center";
      document.getElementById(menuArray[tab] + '_btn').style.color = "#" + color;
     }

    }
     document.getElementById(containerID).style.display = "block";
     document.getElementById(containerID + '_btn').style.backgroundPosition = "top center";
     document.getElementById(containerID + '_btn').style.color = "#" + color2;
  }
}  

