$(document).ready(function(){
	$('#user_login').css('color', '#888888');
	$('#user_login').val('LOGIN');
	$('#user_login').focus(function(){
		if ($(this).val() == 'LOGIN') {
			$(this).val('');
			$(this).css('color', '#000000');
		}
	});
	$('#user_login').blur(function(){
		if ($(this).val() == '') {
			$(this).css('color', '#888888');
			$(this).val('LOGIN');
		}
	});
});