<!--hide 








function GetTodaysclothing()
{
  var locationlist = new URLList
  (
        "http://www.thethriftshopper.com",    // Monday
        "http://www.wholesalefashionsquare.com",    // Tuesday
        "http://www.fashionoutlets.com",    //Wednesday
        "http://www.shop.nordstrom.com",  //Thursday   "
        "http://www.yoox.com",  //Friday
        "http://www.6pm.com",  //Saturday
        "http://www.thriftyfun.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;
}






//--> 

