$(document).ready(function(){
	$(".button")
		.mousedown(function(){
			$(this).css("left", "2px");
			$(this).css("top", "2px");
		})
		.bind("mouseup mouseout click", function(){
			$(this).css("left", "0");
			$(this).css("top", "0");
		});
});
