// JavaScript Document
$(function() {
				
						
			$('#username').focus(function(){
				if ($(this).val() == "username") 
					$(this).attr("value","");
			});
			$('#Password').focus(function()
			{
				if ($(this).val()=="password")
					$(this).val("");

			});	

			/*$('#Image1').click(function()
			{
				if ($('#username').attr("value")=="username") 
				{
					$('#username').attr("value","");
					$('#Password').attr("value","");
				}

			});*/
			
			$(document).ready(function() {
				if ($('#username').val()=="") 
					$('#Text1').attr("value","username");

				if ($('#Password').val()=="") 
					$('#Password').attr("value","password");


			});

		});








