<!-- Hide script from old browsers

function subCatDisplay() 
{
	document.getElementById("scDefault").style.display='none';

	list = document.getElementById("catList");

	current = list.options[list.selectedIndex].value;
	
	if (list.selectedIndex == 0)
		document.getElementById("scDefault").style.display='';

	for (i=1; i<list.options.length; i++)
	{
		if (list.options[i].value != current)
			document.getElementById("sc"+i).style.display='none';
		else
			document.getElementById("sc"+current).style.display='';
	}
}


// End hidding script from old browsers -->
