var deadmaus = document.getElementById("deadmaus");
var context = deadmaus.getContext("2d");
context.beginPath();
context.arc(150, 60, 35, 0, 2*Math.PI);
context.closePath();
context.fillStyle = "yellow";
context.fill();
context.beginPath();
context.arc(40, 60, 35, 0, 2*Math.PI);
context.closePath();
context.fill();
context.beginPath();
context.arc(95, 95, 50, 0, 2*Math.PI);
context.closePath();
context.fill();
context.beginPath();
context.arc(70, 80, 15, 0, 2*Math.PI);
context.closePath();
context.fillStyle = "black";
context.fill();
context.beginPath();
context.arc(120, 80, 15, 0, 2*Math.PI);
context.closePath();
context.fill();