$(document).ready(function(){	
	$('#username').focus(function(){		
		if ($(this).val() == '输入您的用户名')
			$(this).val('');
	}).blur(function(){
		if ($(this).val() == '')
			$(this).val('输入您的用户名');
	});
	
	$('#password').focus(function(){
		if ($(this).val() == '输入您的密码')
			$(this).val('');		
	}).blur(function(){
		if ($(this).val() == '')
			$(this).val('输入您的密码');
	});
	
	$('#vcode').focus(function(){
		if ($(this).val() == '输入验证码')
			$(this).val('');		
	}).blur(function(){
		if ($(this).val() == '')
			$(this).val('输入验证码');
	});
	
	$('#vcodeimg').click(function(){
		$(this).attr('src','/index/vcode?t='+Math.random());
	});
});