// JavaScript Document

$(document).ready(function () {
	var q_default = "Caută în site..";

	$("#search-q").focus( function () {
		if (this.value == q_default) 
			this.value = "";
	});

	$("#search-q").blur( function () {
		if (this.value == "")
			this.value = q_default;
	});

});


