window.onload = init;

var JetA = /*Edit the current Price here*/ "$5.26";
var Avgas = /*Edit the current Price here*/"$5.34";

function init(){
     document.getElementById("fuelone").innerHTML= JetA;
     document.getElementById("fueltwo").innerHTML= Avgas;
}


