function expand(element) { 
	if (element.style.display == 'none') {
		element.style.display = '';	
	} else {
		element.style.display = 'none';
	}
}
