
$(document).ready(function() {

	// image replacement
	if($('#img_check')[0].offsetWidth == 1) { // if images are enabled
		$('h3.img').each(function() {
			string = $(this).text();
			filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
			$(this).html('<img src="/images/party/' + filename + '.gif" height="48" alt="' + string + '" />');
		});
	}
	
});
