function showKids(parent)
{
	var target = $("#"+parent);
	if (target.css('display') == 'none' || target.css('display') == ''){
		$(".vertSlideUL_2").hide('normal');
		target.show('normal');
	} else {
		target.hide('normal');
	}
	
	return false;
}
