function formatQuotes()
{
	jQuery.each(jQuery('.quote'), function(i, elem){
		var quote = elem.innerHTML;
		
		// Do the formatting;
		var matches = quote.split(' - ');
		var newText = matches[0]+" - "+"<span class=\"dj\">"+matches[1]+"</span>";
		elem.innerHTML = newText;
	});
}

jQuery(document).ready(function() {
	formatQuotes();
});

