﻿//K宝实力
function qhshow(t){
   var p=t.parentNode;
   var b='';
    for (var i=0; i<p.childNodes.length; i++){
     if (p.childNodes[i].id != '' && p.childNodes[i].id != t.id && p.childNodes[i].background != t.background && b==''){
      b = p.childNodes[i].background;
      p.childNodes[i].background = t.background;
      t.background = b;
     }
     if(p.childNodes[i].id != '' )document.getElementById('s_' + p.childNodes[i].id).style.display='none';
    }
    document.getElementById('s_' + t.id).style.display='';
   }
