$(document).ready(function(){
	$('#user_login').focus(function(){
		$(this).val('');
	});
	$('#user_pass').focus(function(){
		$(this).val('');
	});

	
	// question form
	$('#q_name').focus(function(){
		$(this).val('');
	});
	$('#q_email').focus(function(){
		$(this).val('');
	});
	$('#q_phone').focus(function(){
		$(this).val('');
	});
	$('#q_message').focus(function(){
		$(this).val('');
	});
	
	// bookplace form
	$('#b_name').focus(function(){
		$(this).val('');
	});
	$('#b_email').focus(function(){
		$(this).val('');
	});
	$('#b_phone').focus(function(){
		$(this).val('');
	});
	$('#b_addr').focus(function(){
		$(this).val('');
	});

});