$(document).ready(function() {

	$.fn.wrapfirstword = function(){
		return this.each(function(){
			if(typeof $(this).text != "undefined"){
				var text = $(this).html();
				var wordarr = text.split(" ");
				wordarr[0] = "<span>" + wordarr[0] + "</span>";
				$(this).html(wordarr.join(" "));
			}
		});
	}
	
	$('ul.benefits li').wrapfirstword();
	
	
	// $('ol.special li').wrapInner('<span />');
	
});
