$(document).ready(function() {
	$("ul.right li, li.cat-item").hover(function() {
		$(this).attr("style", "background-position: bottom !important")
	}, function() {
		$(this).attr("style", "background-position: top !important")
	});
});
