If you still havent had any success with this, try using GWTs
com.google.gwt.user.client.Timer class
something like:
setToDownFace();
Timer togglebuttonTimer = new Timer() {
public void run() {
setToUpFace();
}
};
togglebuttonTimer.schedule(2000);
Timer is essentially a wrapper for JavaScript's setTimeOut.