// JavaScript Document
var navarr = [['subn01','subn02','subn03','subn04','subn05','subn06','subn07','subn08']];
var navarr = [['subn01','subn02','subn03','subn04','subn05','subn06','subn07','subn08']];
function changeSubNav(arrindex,index)
{
	var tarr = navarr[arrindex];
	for(var i =0,tl = tarr.length;i<tl;i++)
	{
		if(document.getElementById(tarr[i]))
		{
			document.getElementById(tarr[i]).style.display ="none";
		}
	}
	if(document.getElementById(tarr[index]))
	{
		document.getElementById(tarr[index]).style.display ="block";
	}
}
function changeClass(ele,tag,index)
{
	if(document.getElementById(ele))
	{
		var taglist = document.getElementById(ele).getElementsByTagName(tag);
		var tll = taglist.length;
		for(var i =0;i<tll;i++)
		{
			if(taglist[i])
			{
				taglist[i].className = "uc-sn-title";
			}
		}
		if(taglist[index])
		{
			taglist[index].className = "uc-sn-title active";
		}
	}
}
window.onload = function()
{
	var o = document.getElementById('uc-Category')?document.getElementById('uc-Category'):document.getElementById('uc-CategoryList');
	o.style.height = (o.offsetHeight<515)?"515px":o.offsetHeight +"px";
}