var j = jQuery.noConflict();

j(document).ready(function () {
	
	j('#discography dl dt.sideA').hover(function() {
		j('#discography dl dt.sideA a').css('background-position', '0 -76px');
	}, function() {
		j('#discography dl dt.sideA a').css('background-position','0 0');
	});
});