
function toggleCate(arg,arg0)
{
   var CateList = arg0;
   if (CateList == "")
      return ;

   arrList = CateList.split(",");
	
   for (i=0; i < arrList.length-1; i++)
   {
      
      tempDiv = eval("document.all.div_"+arrList[i]);
      tempImg = eval("document.all.img_"+arrList[i]);
      
      if (arrList[i] == arg)
      {
      		  
         if (tempDiv.style.display == 'none')
         {
            tempDiv.style.display = '';
            tempImg.src = "http://free.nuguni.com/pub/images/index/left/icon2.gif";
         }
         else
         {
            tempDiv.style.display = 'none';
            tempImg.src = "http://free.nuguni.com/pub/images/index/left/icon1.gif";
         }
      }
      else
      {
         tempDiv.style.display = 'none';
         tempImg.src = "http://free.nuguni.com/pub/images/index/left/icon1.gif";
      }
   }
}

function toggleCate2(arg,arg0)
{
   var CateList = arg0;
   if (CateList == "")
      return ;

   arrList = CateList.split(",");

   for (i=0; i < arrList.length; i++)
   {
      tempDiv = eval("document.all.div_"+arrList[i]);
      tempImg = eval("document.all.img_"+arrList[i]);
      if (arrList[i] == arg)
      {
        
         if (tempDiv.style.display == 'none')
         {
            tempDiv.style.display = '';
            tempImg.src = "http://free.nuguni.com/pub/images/index/left/icon2.gif";
         }
         else
         {
            tempDiv.style.display = 'none';
            tempImg.src = "http://free.nuguni.com/pub/images/index/left/icon1.gif";
         }
      }
      else
      {
         tempDiv.style.display = 'none';
         tempImg.src = "http://free.nuguni.com/pub/images/index/left/icon1.gif";
      }
   }
}