(function($){

	$(function() {

		$('#s:not(.plein)').focus(function() {
			if (this.value == this.defaultValue) {
				$(this).val('');
			}
		}).blur(function() {
			if (this.value == '') {
				$(this).val(this.defaultValue);
			}
		});

		$('.no-comments a[href=#respond]').click(function() {
			var champ = ($('#author').length) ? $('#author')[0] : $('#comment')[0];
			champ.focus();
			return false;
		});

	});

})(jQuery)