
// Requires a reference to JQuery ( src="http://jquery.com/src/latest/" )

// Add brand word-colouring to every tag containing 'software unity':

	$(document).ready(function(){

		$("*:contains('software unity')").each(function(){
			// If text is 'software unity' then replace it with pretty coloured equivalent:
			// (Fixed: Bug in JQuery prevents a search for both words from working, eg: $("h1:contains('software unity')") (It only fails because of the space between the words)
			if(this.innerHTML.toLowerCase() == 'software unity') {
				this.innerHTML = "<span class='clsSuNameSw'>software</span><span class='clsSuNameUnity'>unity</span>";
			}
		});

	});

