function animateContact(id, size) {
el = document.getElementById(id);

var h_size1 = el.offsetHeight;

	if (cgrow) {
		if (h_size1 < size)	{
			el.style.height = h_size1 + (size - h_size1) / 5 + 0.5  +"px";
			document.getElementById('navContainer').style.top = h_size1 - (h_size1 / size) * 45 - 1 -100  +"px";
			grow=true;
			setTimeout("animateContact('" + id + "','" + size + "')", 1);
		}
		else cgrow=false;
	}
	else {
	//alert(h_size1)
		if (h_size1 >= 2) {
			el.style.height = h_size1 - (h_size1 / size) * 45 - 1  +"px";
			document.getElementById('navContainer').style.top =  h_size1 - (h_size1 / size) * 45 - 1 - 300 +"px";
			cgrow=false;
			setTimeout("animateContact('" + id + "','" + size + "')", 1);
		}
		else
			cgrow=true;
	}
}


