function showSubCategory()
{
 $("#AllSort dt").mouseover(function(){
  var newDiv=document.getElementById("Category_div_"+this.id.substr(7));
  this.className="curr";
  if (newDiv)
  {
   newDiv.style.display="block";
   return;
  }
  else
  {
   var CLASS_NAME=($.browser.msie?($.browser.version>"7.0")?"class":"className":"class");
   var newDiv_wrap=document.createElement("div");
   newDiv_wrap.setAttribute(CLASS_NAME,"PopWrap");
   newDiv_wrap.setAttribute("id","Category_div_"+this.id.substr(7))
   var newDiv=document.createElement("div");
   newDiv.setAttribute(CLASS_NAME,"CPop");
   newDiv_wrap.appendChild(newDiv);
   newDiv.innerHTML=this.nextSibling.innerHTML;
   this.parentNode.insertBefore(newDiv_wrap,this);	
   newDiv_wrap.style.display="block";
  }
  $(".PopWrap").mouseover(function(){
   $(this).css({"display":"block"});
   this.nextSibling.className="curr";
  }).bind("mouseleave",function(){
    $(this).css({"display":"none"});
	this.nextSibling.className="";
   })
 }).bind("mouseleave",function(){
   this.className=(this.nextSibling.className=="Dis")?"curr":"";
   $(".PopWrap").css({"display":"none"});
 });	
}