$(function() {

	var defaultValue = "Cuvinte cheie";
	$("#searchKeywords").focus(function(){
		if($(this).attr("value") == defaultValue) {
			$(this).attr("value","");
			$(this).css("color","#666");
		}
	});
	$("#searchKeywords").blur(function(){
		if($(this).attr("value") == "") {
			$(this).attr("value",defaultValue);
			$(this).css("color","#ccc");
		}
	});

});