function swapIn1(num)
{
   var td = document.getElementById("cat" + num);
   td.setAttribute("class", "buttonIn1");
   td.setAttribute("className", "buttonIn1");
}
function swapIn2(num)
{
   var td = document.getElementById("cat" + num);
   td.setAttribute("class", "buttonIn2");	
   td.setAttribute("className", "buttonIn2");	
}
function swapIn3(num)
{
   var td = document.getElementById("cat" + num);
   td.setAttribute("class", "buttonIn3");	
   td.setAttribute("className", "buttonIn3");	
}
function swapOut1(num)
{
   var td = document.getElementById("cat" + num);
   td.setAttribute("class", "buttonOut1");	
   td.setAttribute("className", "buttonOut1");	
}
function swapOut2(num)
{
   var td = document.getElementById("cat" + num);
   td.setAttribute("class", "buttonOut2");	
   td.setAttribute("className", "buttonOut2");	
}
function swapOut3(num)
{
   var td = document.getElementById("cat" + num);
   td.setAttribute("class", "buttonOut3");	
   td.setAttribute("className", "buttonOut3");	
}