
	var opendiv = "0";

	dlhooks.push(function(){ showList(1); });
	
	function showList(lid)
	{
		if(opendiv != "0")
		{
			$('list_'+opendiv)
			.effects
			(
				{
					duration:($('listul_'+opendiv).getStyle('height').toInt()*2), onComplete : function()
					{
						$('list_'+lid)
						.effects
						(
							{
								duration:($('listul_'+lid).getStyle('height').toInt()*2)
							}
						)
						.start
						(
							{
								height : [0,$('listul_'+lid).getStyle('height').toInt()]
							}
						);
						opendiv = lid;
					}
				}
			)
			.start
			(
				{
					height : [$('listul_'+opendiv).getStyle('height').toInt(),0]
				}
			);
			$('link_'+lid).className = 'active';
			$('link_'+opendiv).className = 'inactive';
		}
		else
		{
			$('list_'+lid)
			.effects
			(
				{
					duration:($('listul_'+lid).getStyle('height').toInt()*2)
				}
			)
			.start
			(
				{
					height : [0,$('listul_'+lid).getStyle('height').toInt()]
				}
			);
			$('link_'+lid).className = 'active';
			opendiv = lid;
		}
	}
	

	
