Chciałbym odwałać się do tej samej metody w obiekcie wewnątrz setTimeout. Pytanie brzmi jak to zrobic

var Slider = {
numer: 0,
numer_wszystkich: 11,
timer: 0,
timeout: 0,
slide: function slide(x){
this.timeout = x;
this.numer++;
if(this.numer > this.numer_wszystkich){this.numer = 1;}
var img = document.getElementsByTagName("IMG");
img[0].src = "../projekt4/img/img"+this.numer+".jpg";
window.setTimeout(this.slide(),this.timeout); // chodzi o this.slide(), czym zastąpić aby dowołać sie do tej samej metody
},