$(document).ready(function() {
	$('h1#site-title a').each(function(){
	    var bolder = $(this);
	    bolder.html( bolder.text().replace(/(^\w+)/,'<span>$1</span>') );
	  });
	$('input').example(function() {
	 return $(this).attr('title'); 	
	});
	$('ul.postlist li.post:last').addClass('last');
	$('#commentarea').one("focus", function() {
	     $('#commentarea').parent().before('<div id="response-preview"><div class="title"><h2>You said:</h2></div><div class="entry"></div></div>');
	   });

	   var $comment = ''; // that's two single quotation-marks at the end
	   $('#commentarea').keyup(function() {
	     $comment = $(this).val();
	     $comment = $comment.replace(/\n/g, "<br />")
	       .replace(/\n\n+/g, '<br /><br />');

	     $('div#response-preview div.entry').html( $comment ).fadeIn('slow');
	   });
});

