$(document).ready(function() {
    // Define what happens when the textbox comes under focus
    // Remove the watermark class and clear the box
$(function () {
		$("#Username").watermark("Username...");
		$("#LoginButton").click(
			function () {
				$("#Username").focus();
			}
		);
	});	
$(function () {
		$("#txtUser").watermark("Username...");
		$("#cmdLogin").click(
			function () {
				$("#txtUser").focus();
			}
		);
	});	
$(function () {
		$("#txtFName").watermark("First Name");
		$("#cmdRegister").click(
			function () {
				$("#txtFName").focus();
			}
		);
	});	
/*LAST NAME ENTRY*/
$(function () {
		$("#txtLName").watermark("Last Name");
		$("#cmdRegister").click(
			function () {
				$("#txtLName").focus();
			}
		);
	});	
});

