function expandMe(){
	$('form2Mid').style.height = '0px';
	$('form2Mid').style.overflow = 'hidden';
			
	animateShow();

	// Hide the button.
	document.getElementById('addMoreFriendsBtn').style.display = 'none';	
}

// Animation stuff...
var rollRate = 2;
var roll;
var currHeight = 0;

function animateShow(){
	rollRate = 2;
	roll = setInterval("rollAnimation()", 10);
	$('form2Mid').style.display = 'block';
}

function rollAnimation(){
	rollRate += 2;
	currHeight += rollRate;
	if(currHeight > 160){
		clearInterval(roll);
		$('form2Mid').style.height = '160px';
	}else{
		$('form2Mid').style.height = currHeight + 'px';
	}
}	
// End Animation stuff...	