$(document).ready(function() {		
	if("#uRegister") {
		$("#txtCode").blur(function() {
			if((this).value=="") {
				$(this).attr("value","Enter Code");
				return false;
			}
		});

		$("#txtCode").focus(function() {
			$(this).attr("value","");
			return false;
		});
	};	

	if("#uPassword") {
		$("#txtLostPasswordEmail").blur(function() {
			if((this).value=="") {
				$(this).attr("value","Email Address");
				return false;
			}
		});

		$("#txtLostPasswordEmail").focus(function() {
			$(this).attr("value","");
			return false;
		});
	};
});