$(function(){
    $("#event-search input:text")
    	.val("Search events")
    	.focus(function(){
    		$(this).removeClass("blurred");
    		if (this.value == "Search events") this.value = "";
    	})
    	.blur(function(){
    		$(this).addClass("blurred");
    		if (this.value == "") this.value = "Search events";
    	});
});