var fadeYellow = function fade(){
this.style.backgroundColor = "rgb(255, 255, 0) ";
var cColor = 0;
var button = this;
clearInterval(timer);
var timer = setInterval(function () {
cColor +=25;
button.style.backgroundColor = "rgb(255, 255, " + cColor +")";
cColor >=255 && clearInterval(timer);
},10000);
}
this.style.backgroundColor = "rgb(255, 255, 0) ";
var cColor = 0;
var button = this;
clearInterval(timer);
var timer = setInterval(function () {
cColor +=25;
button.style.backgroundColor = "rgb(255, 255, " + cColor +")";
cColor >=255 && clearInterval(timer);
},10000);
}