
$(document).ready(function(){
	
	StyleLoginBox();

});



//===========================================================
// StyleLoginBox
//===========================================================
function StyleLoginBox( ) {
	try {
		
		// restyle login to display only password and confrim password instead of user name and password
		$(".loginForm TR TD:first-child").each( function () {
			
			var newText = $(this).text().replace("Password:", "Confirm Password:").replace("Name:", "Password:").replace("Name and Password", "password");
			
			$(this).text(newText);
			
			});
	
		}
	catch (error) {
		alert( "StyleLoginBox: " + error.description  );
		}
	}
	
