jQuery(document).ready(function() {
	jQuery('#content h2, #content h1, #sidebar h3, #quick_contact h2').each(function() {
	   var h = $(this).html();
	   var index = h.indexOf(' ');
	   if(index == -1) {
		   index = h.length;
	   }
	   $(this).html('<span class="blue">' + h.substring(0, index) + '</span>' + h.substring(index, h.length));
	});
});
