<!--hide 






function GetTodaysURL()
{
  var locationlist = new URLList
  (
        "http://losangeles.citysearch.com/yellowpages/directory/Los_Angeles_CA/110/524/page1.html",    // Monday
        "http://www.local.com/results.aspx?keyword=Consignment+Stores&cid=3006&location=New+York,+NY&gid=Shopping_&_Retail_Search_Consignment_Stores",    // Tuesday
        "http://miami.citysearch.com/search?gcats=110&cats=524",    //Wednesday
        "http://ziphip.com/Atlanta--2C+GA/Consignment+Stores.zq.html",  //Thursday   "
        "http://boston.citysearch.com/yellowpages/directory/Boston_MA/110/524/page1.html",  //Friday
        "http://www.americasthrift.com/index.php",  //Saturday
        "http://www.thefrugalshopper.com/articles/secondhand.shtml"  // 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;
}






//--> 

