$(function(){
	$("li.mn01").mouseover(function(){
		document.getElementById("works").style.backgroundPosition = "-170px 0%";
	});
	$("li.mn01").mouseout(function(){
		document.getElementById("works").style.backgroundPosition = "0px 0%";
	});
});

