$(function(){   
	$("#top_image").mouseover(function(){
		this.style.left = "1px";
		this.style.top = "1px";
	});
	$("#top_image").mouseout(function(){
		this.style.left = "0px";
		this.style.top = "0px";
	});
});
