function initTeaser(){
  standardTeaserArray = teaser.smallStandard.getSequence();
  teaserCounter = 0;
  for (var i=0; i < standardTeaserArray.length; i++){
    for (var j=0; j < teaser.smallStandard.length; j++){
      if(teaser.smallStandard[j] == standardTeaserArray[i]){
        setVisibility("smallStandardTeaser" + j, null, 'block');
        teaserCounter++;
        break;
      }
    }
    if(teaserCounter==3){
      break;
    }
  }
}