def showCorrectTrophy(trophyId):
     if hasattr(self, 'trophyImage'):
         self.trophyImage.destroy()
     self.trophyImage = RacingTrophy(level=trophyId, parent=self.trophyComponents[1], pos=(0.5, 0, -0.25))
     if trophyId == RaceGlobals.GrandTouring or trophyId == RaceGlobals.TotalQuals or trophyId == RaceGlobals.TotalWins:
         scale = self.trophyImage.getScale()
         scale = scale * 0.5
         self.trophyImage.setScale(scale)