function e(id) {
	return document.getElementById(id);
}

$(document).ready(function()
{
	$('dt').hover(
		function() {
			$('#' + this.id + ' a img').attr('src', 'SystemFiles/' + this.id  + '_over.png');
			$('#' + this.id + ' a').css('background', '#877B69');
		},
		function() {
			$('#' + this.id + ' a img').attr('src', 'SystemFiles/' + this.id  + '.png');
			$('#' + this.id + ' a').css('background', '#D9D1C6');
		}
	);
});