$(function() {
	$(".button, .big-button").mousedown(function() {
		$(this).addClass("pushed");
	});
	$(".button, .big-button").mouseup(function() {
		$(this).removeClass("pushed");
	});
	$(".button, .big-button").mouseout(function() {
		$(this).removeClass("pushed");
	});
})

