function draw() {
var canvas = document.getElementById("box");
var ctx = canvas.getContext("2d");
ctx.fillStyle = "rgb(105, 105, 105)";
ctx.fillRect(0,0,700,50);
}

