dojo.addOnLoad(function(){
  // every element in the page with the class "blueButton" assigned
	dojo.query("h1").forEach(function(node, index, arr){
		aTxt = node.innerHTML;
		var words = aTxt.match(/(\S+).*/) ;
		if( words && words.length > 1) {
			aTxt = aTxt.replace(/\S+/, '<span class="first-word">' + words[1] + '</span>') ;
			node.innerHTML = aTxt ;
		}
	});
	dojo.query(".form_title").forEach(function(node, index, arr){
		aTxt = node.innerHTML;
		var words = aTxt.match(/(\S+).*/) ;
		if( words && words.length > 1) {
			aTxt = aTxt.replace(/\S+/, '<span class="first-word">' + words[1] + '</span>') ;
			node.innerHTML = aTxt ;
		}
	});
});
