$(document).ready(function(){
	$('#username').attr('value', 'enter your login ID');
	$('#password').attr('value', 'password');
	$('#username').focus(function(){
		el = $(this);
		el.attr('value', '');
	});
	$('#username').blur(function(){
		el = $(this);
		if(el.val() == '')
		{
			el.attr('value', 'enter your login ID');
		}
	});
	$('#password').focus(function(){
		el = $(this);
		el.attr('value', '');
	});
	$('#password').blur(function(){
		el = $(this);
		if(el.val() == '')
		{
			el.attr('value', 'password');
		}
	});
});
