function initOverLabels() {
	// check if RU form values are blank, if so show labels
	if ($e('username-field').value == "") {
		show('ru-overlabel-username');
	}
	if ($e('password-field').value == "") {
		show('ru-overlabel-password');
	}	
	
	// when user clicks on the input field, or the label above it, hide the label
	$e('username-field').onclick = function() {
		hide('ru-overlabel-username');
	}
	$e('ru-overlabel-username').onclick = function() {
		hide('ru-overlabel-username');
	}
	$e('password-field').onclick = function() {
		hide('ru-overlabel-password');
	}	
	$e('ru-overlabel-password').onclick = function() {
		hide('ru-overlabel-password');
	}	
	
	// when clicking off input, if it's blank, put the label back
	$e('username-field').onblur = function() {
		if (this.value == "") {
			show('ru-overlabel-username');
		}
	}
	$e('password-field').onblur = function() {
		if (this.value == "") {
			show('ru-overlabel-password');
		}
	}
}
/*
function $e(id) {
	return document.getElementById(id);
}

function show(id) {
	$e(id).style.display = "block";
}

function hide(id) {
	$e(id).style.display = "none";
}
*/