jQuery(document).ready(function($){

	$("#user_name").focus(
		function() {
			if ( $(this).val('username') ) {
			  $(this).val("");
			}
		$(this).addClass("field_on");
		}
	);

	$("#user_name").blur(
		function() {
		 if ($("#user_name").val() == '') {
	  	 	$("#user_name").val('username');
			$(this).removeClass("field_on");
	 		}
		}
	);


	$("#fake_password").focus(
		function() {
	 		$(this).hide();
	 		$("#password").show();
	 		$("#password").focus();
			$("#password").addClass("field_on");
		}
	);


	$("#password").blur(
		function() {
	 		if ($("#password").val() == '') {
	  			$(this).hide();
	  			$("#fake_password").show();
				$(this).removeClass("field_on");
	  			$("body").focus();
	 		}
		}
	);





});