var DrinksPage = ({
  ini:function() {
    var topEl = $('topDrinksBox');
    if (null != topEl) {
      this.BigImg = $$('.topdrinksBigImg');
      this.topdrinksInfo = $$('.topdrinksInfo');
      this.topdrinksSmallImg = $$('.topdrinksSmallImg');
      for (i=0; i<this.topdrinksSmallImg.length; i++) {
        this.topdrinksSmallImg[i].addEvent('mouseover',DrinksPage.switchTopDrink.bindWithEvent(this,i));
      } 
    }
  },
  switchTopDrink:function(e,i) {
    for (j=0; j<this.topdrinksSmallImg.length; j++) {
      if (j == i) {
        this.topdrinksSmallImg[j].className = 'topdrinksSmallImg selected';
        this.BigImg[j].style.display = 'block';
        this.topdrinksInfo[j].style.display = 'block';
      } else {
        this.topdrinksSmallImg[j].className = 'topdrinksSmallImg';
        this.BigImg[j].style.display = 'none';
        this.topdrinksInfo[j].style.display = 'none';
      } 
    }
  }
});

window.addEvent('domready', DrinksPage.ini.bind(DrinksPage));

