(function($){
		$('.txt').focus(function(){
			var $this = $(this);
			if($this.val() === $this.data('hint')){
				$this.val('').removeClass('tx-hint');
			}
		}).blur(function(){
			var $this = $(this);
			if($.trim($this.val()) === ''){
				$this.val($this.data('hint'));
			}
		});
		$('.login-form').submit(function(e){
			e.preventDefault();
			$('.txt').addClass('txt-error');
			$('.error-message').show();
		});
}(jQuery));
