function expand() {
	var div = document.getElementById('searchForm');
	div.style.height = '60px';
}
function tighten() {
	var div = document.getElementById('searchForm');
	div.style.height = '24px';
}
