<!-- hide script from old browsers

	function initialize(categories)
	{
		var adone = "<a href=\"http://www.indepthinfo.com/plainfacts/minwage.shtml\"><img src=\"http://www.indepthinfo.com/plainfacts/gifs/minwagebanner.gif\" width=\"468\" height=\"60\" border=\"0\" alt=\"plain facts\"></a>";
		var adtwo = "<a href=\"http://www.indepthinfo.com/plainfacts/eco-imperialism.shtml\" target=\"_top\" ><img src=\"http://www.indepthinfo.com/plainfacts/gifs/starvebanner.gif\" width=\"468\" height=\"60\" alt=\"plain facts\" border=\"0\"></a>";
		var adthree = "<a href=\"http://www.indepthinfo.com/plainfacts/taxcuts.shtml\" target=\"_top\" ><img src=\"http://www.indepthinfo.com/plainfacts/gifs/taxcutbanner.gif\" width=\"468\" height=\"60\" alt=\"plain facts\" border=\"0\"></a>";
		var adfour = "<a href=\"http://www.homehumor.com/indexa.shtml\" target=\"_top\" ><img src=\"http://www.homehumor.com/gifs/logo1.gif\" width=\"468\" height=\"60\" alt=\"How Not to Build an Addition\" border=\"0\"></a>";
		var adfive = "<a href=\"http://www.indepthinfo.com/plainfacts/trees.shtml\"><img src=\"http://www.indepthinfo.com/plainfacts/gifs/treesbanner.gif\" width=\"468\" height=\"60\" border=\"0\" alt=\"plain facts\"></a>";
		var adsix = "<a href=\"http://www.conservativebookstore.com/cookbook/index/indexb.htm\"><img src=\"http://www.conservativebookstore.com/gifs/ads/realman1.gif\" width=\"468\" height=\"60\" border=\"0\" alt=\"Real Man's Cookbook\"></a>";

		var miscBanners = new Array();
			miscBanners[0] = new bannerRecord(adone, "noModify");
			miscBanners[1] = new bannerRecord(adtwo, "noModify");
			miscBanners[2] = new bannerRecord(adthree, "noModify");
			miscBanners[3] = new bannerRecord(adfour, "noModify");
 			miscBanners[4] = new bannerRecord(adfive, "noModify");
 			miscBanners[5] = new bannerRecord(adsix, "noModify");
 		
		categories["misc"] = new categoryRecord(miscBanners);
	}


  // ****************************************
  // Do not modify any of the following lines

  function categoryRecord(bannerNames)
  {
	this.bannerNames = bannerNames;
  }
  function bannerRecord(bannerLink, type)
  {
	this.bannerLink = bannerLink;
	this.type = type;
  }

  function showBanner(category)
  {
    	var categories = new Array();
	initialize(categories);

	var outputRecord = "";
  	var now = new Date();
	var bannerNum = (now.getSeconds()) % categories[category].bannerNames.length;
	var banner = categories[category].bannerNames[bannerNum];

	if( banner.type == "javascript" )
	{
  		outputRecord += "<script src=\"";
  		outputRecord += banner.bannerLink;
  		outputRecord += "\"></script>";
	}
	else
	{
		outputRecord += banner.bannerLink;
	}

	document.write(outputRecord);
  	document.close();
  }

// end of script hiding -->
