days = new Array(7);
	days[1] = "Sunday"; days[2] = "Monday"; days[3] = "Tuesday"; days[4] = "Wednesday"; days[5] = "Thursday"; days[6] = "Friday"; days[7] = "Saturday";
	months = new Array(12);
	months[1] = "January"; months[2] = "February"; months[3] = "March"; months[4] = "April"; months[5] = "May"; months[6] = "June"; months[7] = "July"; months[8] = "August"; months[9] = "September"; months[10] = "October"; months[11] = "November"; months[12] = "December";
	
	function DateString () {
		today = new Date();
		year  = today.getYear();
		if (year < 2000) {
			year = year + 1900;
		}
		return days[today.getDay() + 1] + ", " + months[today.getMonth() + 1] + " " + today.getDate() + ", " + year;
	}

	function setText(id, txt) {
		var theElement = document.getElementById(id);
		theElement.innerHTML = txt;
	}
	var featureTxt = "check cutting edge articles and get inspired.";
	var destinationTxt = "discover unusual destinations and revisit favorites with our explorer or local guides.";
	var lodgingTxt = "search for unique independent hotels, b&bs, ecolodges, homestays & more.";
	var transportTxt = "find a new way to get where you're going; planes, trains, automobiles and beyond.";
	var tourTxt = "explore the world with GoNOMAD NETWORK guides, tours and outfitters.";
	var alternativeTxt = "go deeper with learning vacations, volunteer opportunities and other alternatives.";
	var travelTxt = "all the practical resources you need to travel safely and healthily.";
	var womenTxt = "experience the wide open world of women's travel and sisterhood.";
	var familyTxt = "forget the mouse, investigate educational, exciting & fun alternatives with kids.";
	var flightsTxt = "find budget flights anywhere in the the world.";
	var hotelsTxt = "find budget hotels anywhere in the the world.";