    if (document.images) {
      // Pizza size icons (on and off states)
      SOn = new Image; SOn.src = "/images/menu/s_over.gif";
      SOff = new Image; SOff.src = "/images/menu/s.gif";
      MOn = new Image; MOn.src = "/images/menu/m_over.gif";
      MOff = new Image; MOff.src = "/images/menu/m.gif";
      LOn = new Image; LOn.src = "/images/menu/l_over.gif";
      LOff = new Image; LOff.src = "/images/menu/l.gif";
      XLOn = new Image; XLOn.src = "/images/menu/xl_over.gif";
      XLOff = new Image; XLOff.src = "/images/menu/xl.gif";
      
      AddOff = new Image; AddOff.src = "/images/menu/add.gif";
  		AddOn = new Image; AddOn.src = "/images/menu/add_over.gif";
    }

    function itemAdded(divref) {
      if (document.all) {
        AddTimeout = window.setTimeout(divref + ".innerHTML = '<span style=background-color:#00FFFF;width:auto;>Item added!</span>'", 0001)
        AddTimeout = window.setTimeout(divref + ".innerHTML = '<span style=background-color:#33FFFF;width:auto;color:#333333;>Item added!</span>'", 4000)
        AddTimeout = window.setTimeout(divref + ".innerHTML = '<span style=background-color:#66FFFF;width:auto;color:#666666;>Item added!</span>'", 4250)
        AddTimeout = window.setTimeout(divref + ".innerHTML = '<span style=background-color:#99FFFF;width:auto;color:#999999;>Item added!</span>'", 4500)
        AddTimeout = window.setTimeout(divref + ".innerHTML = '<span style=background-color:#CCFFFF;width:auto;color:#CCCCCC;>Item added!</span>'", 4750)
        AddTimeout = window.setTimeout(divref + ".innerHTML = '&nbsp;'", 5000)
      }
      else if (document.layers) {
        alert('Item added!')
      }
      else if (!document.all && document.getElementById) {
        theObj = document.getElementById(divref)
        theObj.innerHTML = '<span style=background-color:#00FFFF;width:auto;>Item added!</span>'
        AddTimeout = window.setTimeout("theObj.innerHTML = '&nbsp;'",1500)
      }
      else {}
    }

