$(document).ready(function() {
	$('#txtUsername').focus(	function(){
									if($.trim($(this).val()) == 'Username') {
										$(this).val('');
									}		
								})
					 .blur(	function(){
									if($.trim($(this).val()) == '') {
										$(this).val('Username');
									}		
								})
								
	$('#txtPassword').focus(	function(){
									if($.trim($(this).val()) == 'Password') {
										$(this).val('');
									}		
								})
					 .blur(	function(){
									if($.trim($(this).val()) == '') {
										$(this).val('Password');
									}		
								})
								
	$('#txtEventID').focus(	function(){
									if($.trim($(this).val()) == 'Event ID') {
										$(this).val('');
									}		
								})
					 .blur(	function(){
									if($.trim($(this).val()) == '') {
										$(this).val('Event ID');
									}		
								})
});
