
jQuery(document).ready(function(){
	
	jQuery('#news_list a').each(function(){
		var me = jQuery(this),
			t = me.text().split(' ');
		me.html( '<strong>'+t.shift()+'</strong> '+t.join(' ') );
	}); 
	
	//$('#news_list a').each(function(){
	//	var me = $(this);
	//	me.html( me.text().replace(/(^\w+)/,'<strong>$1</strong>') );
	//}); 

}); // close document.ready
