function clearBorder() {
	$("input:text, input:password, textarea").css("border", "1px solid #B9C8CF");
}

function activeInput() {
	clearBorder();
	$(this).css("border", "1px solid #97B9C7");
}


function clearField() {
	$(this).val("");
	$(this).unbind();
	clearBorder();
	$(this).css("border", "1px solid #97B9C7");
	$(this).css("color", "#666666");
	$("input:text, input:password, textarea").bind("focus", activeInput);
}

$(document).ready(function(){
	$("#littleSearch").val("поиск");
	$("#littleSearch").css("color", "#cccccc");
	$("#littleSearch").bind("focus", clearField);
	
	$("#enterLogin").val("логин");
	$("#enterLogin").css("color", "#cccccc");
	$("#enterLogin").bind("focus", clearField);
	
	
	$("#enterPsswd").val("пароль");
	$("#enterPsswd").css("color", "#cccccc");
	$("#enterPsswd").bind("focus", clearField);
		
	clearBorder();
	$("input:text, input:password, textarea").bind("focus", activeInput);
	
	
});