function getEl(element) {
	var theElement = document.getElementById(element);
	
	return theElement;
}

function toggleEvent(num) {
	var theDiv = getEl('eventDiv_' + num);
	var theArrow = getEl('eventArrow_' + num);
	var theName = getEl('eventName_' + num);

	if(theDiv.style.display == '') {
		theDiv.style.display = 'none';
		theArrow.src = '/members/img/arrowright.jpg';
		theName.style.color = '#971B1E';
		} else {
			theDiv.style.display = '';
			theArrow.src = '/members/img/arrowdown.jpg';
			theName.style.color = '#CF4D52';
		}
	}
	
function toggleNote(num) {
	var theDiv = getEl('notesContainer_' + num);
	
	if(theDiv.style.display == '') {
		theDiv.style.display = 'none';
	} else {
		theDiv.style.display = '';
	}
}