/*
Project:     SomaWeb: public website (v5)
 
@author 		Kenneth Knox <knox@equiknox.com>

$Id: shop.js,v 1.1 2005/03/28 12:58:08 knox Exp $

Shop javascript functions
*/


var Color= new Array();
Color[1] = "000000";
Color[2] = "0F0F0F";
Color[3] = "111111";
Color[4] = "1F1F1F";
Color[5] = "222222";
Color[6] = "2F2F2F";
Color[7] = "333333";
Color[8] = "3F3F3F";
Color[9] = "444444";
Color[10] = "4F4F4F";
Color[11] = "555555";
Color[12] = "5F5F5F";
Color[13] = "666666";
Color[14] = "7F7F7F";
Color[15] = "888888";
Color[16] = "8F8F8F";
Color[17] = "909090";
Color[18] = "9F9F9F";
Color[19] = "A0A0A0";


function waittofade() {
  if (document.getElementById('basket_side')) {
    setTimeout("fadeIn(19)", 200);
   }
}

function fadeIn(where) {
  if (where >= 1) {
      document.getElementById('basket_side').style.backgroundColor = "#" + Color[where];
    if (where > 1) {
      where -= 1;
      setTimeout("fadeIn("+where+")", 100);
    } else {
      where -= 1;
      setTimeout("fadeIn("+where+")", 80);
      document.getElementById('basket_side').style.backgroundColor = "transparent";
      document.getElementById('basket_side').id = '';
    }
  }
}