$(document).ready(function(){
	$("#temp-password").focus(function(){$("#input-login-temp-password-div").toggle();$("#input-login-real-password-div").toggle();$("#real-password").focus();});
	$("#real-password").blur(function(){if (this.value == ''){$("#input-login-temp-password-div").toggle();$("#input-login-real-password-div").toggle();}});
	$("#ttn-company-id").focus(function(){if (this.value == 'Company ID'){this.value='';}});
	$("#ttn-company-id").blur(function(){if (this.value == ''){this.value='Company ID';}});
	$("#ttn-user-id").focus(function(){if (this.value == 'User ID'){this.value='';}});
	$("#ttn-user-id").blur(function(){if (this.value == ''){this.value='User ID';}});
});