function initLoginBarListener() {
	$("#loginbar input").focus(function() {
		if ($(this).attr('name') == 'newUsername') $(this).removeClass("usrfield");
		if ($(this).attr('name') == 'newPassword') $(this).removeClass("pwdfield");
	}).blur(function() {
		if ($(this).attr('name') == 'newUsername' && !$(this).val()) $(this).addClass("usrfield");
		if ($(this).attr('name') == 'newPassword' && !$(this).val()) $(this).addClass("pwdfield");
	});
}