function showSubCategory(){
	$("#tbc_01 dt").mouseover(function(){
			var newDiv=document.getElementById("EFF_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 CLASS_NAME=($.browser.msie)?"className":"class";
				var newDiv_wrap=document.createElement("div");
				newDiv_wrap.setAttribute(CLASS_NAME,"pop_wrap");
				newDiv_wrap.setAttribute("id","EFF_div_"+this.id.substr(7))
				var newDiv=document.createElement("div");
				newDiv.setAttribute(CLASS_NAME,"pop");
				newDiv_wrap.appendChild(newDiv);
				newDiv.innerHTML=this.nextSibling.innerHTML;
				this.parentNode.insertBefore(newDiv_wrap,this);	
				newDiv_wrap.style.display="block";
			}
		//test/		
  $(".pop_wrap").mouseover(function(){
            $(this).css({"display":"block"});
            var el=this.nextSibling;
            while(el.nodeType!=1){
                  el=el.nextSibling;     
                  if(!el) return;
            };
            el.className="curr";
        }).bind("mouseleave",function(){
            $(this).css({"display":"none"});
            var el=this.nextSibling;
            while(el.nodeType!=1){
                  el=el.nextSibling;     
                  if(!el) return;
            };
            el.className="";
        })

		//test end/
	}).bind("mouseleave",function(){
		this.className=(this.nextSibling.className=="Dis")?"curr":"";
		$(".pop_wrap").css({"display":"none"});
	});	
	
}

//showSubCategory();
function showSubCategory1(){
	$("#tbc_02 dt").mouseover(function(){
			var newDiv=document.getElementById("EFF_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 CLASS_NAME=($.browser.msie)?"className":"class";
				var newDiv_wrap=document.createElement("div");
				newDiv_wrap.setAttribute(CLASS_NAME,"pop_wrap");
				newDiv_wrap.setAttribute("id","EFF_div_"+this.id.substr(7))
				var newDiv=document.createElement("div");
				newDiv.setAttribute(CLASS_NAME,"pop");
				newDiv_wrap.appendChild(newDiv);
				newDiv.innerHTML=this.nextSibling.innerHTML;
				this.parentNode.insertBefore(newDiv_wrap,this);	
				newDiv_wrap.style.display="block";
			}
		//test/		
	$(".pop_wrap").mouseover(function(){
			$(this).css({"display":"block"});
			this.nextSibling.className="curr";
		}).bind("mouseleave",function(){
			$(this).css({"display":"none"});
			this.nextSibling.className="";
		})
		//test end/
	}).bind("mouseleave",function(){
		this.className=(this.nextSibling.className=="Dis")?"curr":"";
		$(".pop_wrap").css({"display":"none"});
	});	
}

//showSubCategory1();

