function makeActive(fEle, fActiveClass, fInActiveClass)
{
                 var parent = fEle.parentNode
                 for(f=0;f<parent.childNodes.length;f++)
                 {
                                   if(parent.childNodes[f] == fEle)
                                                    parent.childNodes[f].className = fActiveClass
                                   else
                                                    parent.childNodes[f].className = fInActiveClass
                 }
}
