<!--hide 








function GetTodaysbox()
{
  var locationlist = new URLList
  (
        "http://www.loehmanns.com",    // Monday
        "http://www.shoebuy.com",    // Tuesday
        "http://www.bluefly.com",    //Wednesday
        "http://www.goodwill.org",  //Thursday   "
        "http://www.secondhandsavvy.com",  //Friday
        "http://www.bloomingdales.com",  //Saturday
        "http://www.zappo.com"  // Sunday
  );

  now = new Date();
  num = now.getDay();
  if (num == 0) num = 7;

  location.href = locationlist.list[num-1];
}

function URLList ()
{
  var argv = URLList.arguments;
  var argc = argv.length;
  this.list = new Object();
  for (var i = 0; i < argc; i++)
  this.list[i] = argv[i];
  this.count = argc;
  return this;
}






//--> 

