
var storeTimer;
var storeCurrent = 0;

function storeAnimation () {
  var thePlace0 = document.getElementById("storeanim0");
  var thePlace1 = document.getElementById("storeanim1");
  var thePlace2 = document.getElementById("storeanim2");

  if(storeCurrent == 0) {
    thePlace0.style.display = '';
    thePlace0.style.visibility = 'visible';
    thePlace1.style.display = 'none';
    thePlace1.style.visibility = 'hidden';
	thePlace2.style.display = 'none';
    thePlace2.style.visibility = 'hidden';
    storeCurrent = 1;
  } else if(storeCurrent == 1) {
    thePlace1.style.display = '';
    thePlace1.style.visibility = 'visible';
    thePlace0.style.display = 'none';
    thePlace0.style.visibility = 'hidden';
	thePlace2.style.display = 'none';
    thePlace2.style.visibility = 'hidden';
    storeCurrent = 2;
  } else {
    thePlace2.style.display = '';
    thePlace2.style.visibility = 'visible';
    thePlace0.style.display = 'none';
    thePlace0.style.visibility = 'hidden';
	thePlace1.style.display = 'none';
    thePlace1.style.visibility = 'hidden';
    storeCurrent = 0;
  }
  globalTimer = setTimeout("storeAnimation();", 7000);
}

