// Execution de cette fonction lorsque le DOM sera entièrement chargé  
jQuery(document).ready(function() {
 	var $ = jQuery;
         
	$(function() {
		$('input#s').attr("title","Search this blog...");
		$('#feedburner input.input-text').attr("title","Subscribe via email");
	});
		 
	$(':input[title]').each(function() {
	  var $this = $(this);
	  if($this.val() === '') {
		$this.val($this.attr('title'));
	  }
	  $this.focus(function() {
		if($this.val() === $this.attr('title')) {
		  $this.val('');
		}
	  });
	  $this.blur(function() {
		if($this.val() === '') {
		  $this.val($this.attr('title'));
		}
	  });
	});	 
		 
	
     
});
