$(document).ready(function() {

	// image replacement
	// if($('#logo')[0].offsetWidth == 288) { // if images are enabled
		$('span.cassius').each(function() {
			string = $(this).text();
			filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
			$(this).html('<img src="./img/' + filename + '-text.gif" height="12" alt="' + string + '" />');
		});
	//}

});

