function do_cool(Total,number,index){
 for (var i = 1; i <= number; i++) {
      document.getElementById('pht' +Total+ i).className = 'ph_t2';
      document.getElementById('phtab' +Total+ i).style.display = 'none';
       document.getElementById('pht' + i).style.backgroundColor = '#ffffff';
         document.getElementById('pht' +Total+ i).style.backgroundColor='#868686';
 }
 
  document.getElementById('pht' + Total+ index).className = 'ph_t1';
  document.getElementById('phtab' + Total+ index).style.display = 'block';
  if(index==1)
  {
  	 document.getElementById('pht' + Total+ index).style.backgroundColor = '#205D8C';
 document.getElementById('pht' + index).style.backgroundColor = '#205D8C';
  	}

 if(index==2)
  {
  	 document.getElementById('pht' + Total+ index).style.backgroundColor = '#008736';
 document.getElementById('pht' + index).style.backgroundColor = '#008736';
  	}
  	 if(index==3)
  {
  	 document.getElementById('pht' + Total+ index).style.backgroundColor = '#F98800';
 document.getElementById('pht' + index).style.backgroundColor = '#F98800';
  	}
  	 if(index==4)
  {
  	 document.getElementById('pht' + Total+ index).style.backgroundColor = '#0082D1';
 document.getElementById('pht' + index).style.backgroundColor = '#0082D1';
  	}}

function do_cool1(Total,number,index){
 for (var i = 1; i <= number; i++) {
      document.getElementById('phtab' +Total+ i).style.display = 'none';
 }
  document.getElementById('phtab' + Total+ index).style.display = 'block';
}

function menu_show(number,index)
{
document.getElementById('mt' + number+ index).className = 'MenuB_B';
}
function menu_hide(number,index)
{
document.getElementById('mt' + number+ index).className = 'MenuB';
}
