Ext.namespace('Ext.cs');

Ext.cs.theImages = new Array();

function csPreloadImage(aAddress)
  {
  if (document.images)
    {
    var img = new Image(); 
    img.src = aAddress;
    Ext.cs.theImages.push(img);
    }
  }

