// JavaScript Document

$(document).ready(function() {
	$("strong:contains('Ele')").each(function() {
		var product = $(this).html();
		if(product.indexOf(' ') == -1)
		{
			var suffix = product.substr(3);
			$(this).html('<span class="pink">Ele</span><span class="blue">' + suffix + '</span>');
		} else if(product.toLowerCase() == 'elephant kiosks') {
			$(this).html('<span class="pink">Elephant</span> <span class="blue">Kiosks</span>');
		}
	});
});
