// Java Document

<!--
	function expand(div) {
		var showdomainstuff = new Fx.Styles(div,{duration:250});
		var propheight = document.getElementById(div).scrollHeight;
		showdomainstuff.start({
			'height':[0,propheight],
			'opacity':[0,1]
		});
		document.getElementById(div).href=('javascript:shrink(\'' + div + '\');');
	}

	function shrink(div) {
		var showdomainstuff = new Fx.Styles(div,{duration:250});
		var propheight = document.getElementById(div).scrollHeight;
		showdomainstuff.start({
			'height':[propheight,0],
			'opacity':[1,0]
		});
		document.getElementById(div).href=('javascript:expand(\'' + div + '\');');
	}
//-->