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