function LoadHuaDongList(hdkid)
{	
	var AllDiv = document.getElementById(hdkid).getElementsByTagName("div");
	var XH=0;
	for(var i=0; i<AllDiv.length; ++i)
	{
		if(AllDiv[i].className.indexOf("wz")>-1)
		{
			++XH;
			AllDiv[i].id="hd_wz"+hdkid+XH.toString();
			AllDiv[i].onmouseover=OnHuaDongList;
		}
		else
		{
			if(AllDiv[i].className.indexOf("tp")>-1)
			{
				AllDiv[i].id="hd_tp"+hdkid+XH.toString();
			}
		}
	}	
}

function OnHuaDongList()
{
	var ThisID=this.id;
	var hdkid=document.getElementById(ThisID).parentNode.id;
	var AllDiv = document.getElementById(hdkid).getElementsByTagName("div");

	for(var i=0; i<AllDiv.length; ++i)
	{
		if(AllDiv[i].className.indexOf("wz")>-1)
		{
			AllDiv[i].className="wz";
		}
		else
		{
			if(AllDiv[i].className.indexOf("tp")>-1)
			{
				AllDiv[i].className="tp bxs";
			}
		}
	}
	

	if(ThisID.indexOf("wz")>-1)
	{		
		document.getElementById(ThisID).className="wz bxs";
		document.getElementById("hd_tp"+ThisID.substring(5)).className="tp";
	}
}
