var divheight = 0;

function show(id, fullheight) {
	
	var div=document.getElementById(id);
	div.style.height=divheight+"px";
	if(divheight<fullheight) {
		setTimeout("show('"+id+"',"+fullheight+")",10);
		divheight = divheight + 24;
	}
}

function hide(id, minheight) {
	
	var div=document.getElementById(id);
	div.style.height=divheight+"px";
	if(divheight>minheight) {
		setTimeout("hide('"+id+"',"+minheight+")",10);
		divheight = divheight - 24;
	}
}

function quickLinks() {
	
	var div = document.getElementById("quicklinks");
		
	if (div.style.height == "0px" || div.style.height == "") {
		show('quicklinks', 144) //200px
	} else {
		hide('quicklinks', 0) //200px
	}
}