function traveltips(){

	//Build the Array
	var aTravelTips = new Array();
	aTravelTips[0] = "Money, Passports &amp; Other Documents</h5>In addition to keeping your passport, etc. in your security wallet, you should also pack a recent photo of the person you're traveling with, in case you're separated.";
	
	aTravelTips[1] = "Cash, Credit Cards, ATM Cards, etc.</h5>While traveling, only carry a maximum of $75 cash in your purse/wallet &amp; no credit cards.   Then if you are pick-pocketed, this is the most you will lose.";
	
	aTravelTips[2] = "Packing Jewelry</h5>To pack a necklace to avoid kinks, thread through a straw, and then place inside a travel toothbrush holder to protect it from getting crushed in your bag.";
	
	aTravelTips[3] = "Traveling With Medicine</h5>Always keep your prescription medication in the original bottle and safely in a lockable pill organizer.  Never pack in your checked bag.";
	
	aTravelTips[4] = "Packing Your Toiletries</h5>Use the free shower cap in your hotel room as a shoe cover over the bottom of your shoes before you pack them in your bag to keep soil away from other items."; 
	
	aTravelTips[5] = "Security At Home &amp; En Route</h5>Pack a night light to use in hotel rooms.  It lights the bathroom just enough for a guide, if you’re disoriented in the middle of the night.";
	
	aTravelTips[6] = "Note Reminders</h5>Take small, colored post-it notes to use on your hotel mirror as reminders.  &quot;Remember travel alarm, passport in safe,&quot; etc.";
	
	aTravelTips[7] = "Laundry On The Go</h5>Make a travel washing machine out of a Ziploc® bag.  Add water &amp; soap, get suds, place your items in the bag &amp; &quot;agitate.&quot;Add water only to rinse.";
	
	aTravelTips[8] = "Car Tips for Road Trips</h5>Use a 9x13 covered cake pan as a lap desk for kids in the car.  Pack colored pencils, papers and crafts inside &amp; they have a flat surface to write on the top.";
	
	aTravelTips[9] = "TSA Luggage Locks</h5>Always lock your luggage with approved TSA locks, if only to keep zippers closed in transit.";  
	
	aTravelTips[10] = "Food</h5>You never know when your next meal is coming, so always pack a healthy snack &amp; a bottle of water."; 
	
	aTravelTips[11] = "Food Allergies</h5>If you are allergic to certain foods, have someone write on a card in the language of the countries you are visiting, the foods you cannot eat.";
	
	aTravelTips[12] = "Postcard Journal</h5>Mail postcards to yourself to serve as fun, beautiful keepsakes of your trip.  For attractive display and storage, punch a hole in the corner and bind with ribbon.";
	
	aTravelTips[13] = "Travelers Checks</h5>Travelers Checks are no longer recommended for travel as they are easily counterfeited (which makes them difficult to cash).";  
	

					
	//Pick the random running feet

	var randomFeet = aTravelTips[Math.round(Math.random() * 13)];

	document.write(randomFeet)

	

	//Write the text depending on which browser

	/*

	if(document.all) {

		document.all.rf.innerText = randomFeet;

	}

	else{

		if(navigator.appVersion.search('4.') != -1){

		document.write(randomFeet);

		//	document.layers["rf"].document.open();

		//	document.layers["rf"].document.write(randomFeet);

		//	document.layers["rf"].document.close();

		}

		else{

			document.getElementById("rf").innerHTML = '<font face="arial" size="2" color="white">' + randomFeet + '</font>';

		}

	}

	*/

}

  