function pick(words) {
	return words[Math.floor(Math.random()*words.length)];
}
function getWord() {
	var words = setWords();
	return pick(words);
}
function setWords() {
var words = [
"bebo"
,"you tube"
,"free email"
,"hotmail"
,"top drawer games"
,"latest mobile phones"
,"newest released dvds"
,"top movies"
,"free games"
,"free online games"
,"bargain cheap cds"
,"cheaper home insurance"
,"getting car insurance quotes"
,"smaller remortgage repayments"
,"save me money"
,"earn me some cash"
,"top secret stuff"
,"google earth"
,"fastest ferrari"
,"bmw m5"
,"alloys"
,"ebay bargains"
,"online auction sites"
,"low cost airlines"
,"cheap travel"
,"games cheats"
,"football results"
,"ice hockey results"
,"basketball results"
,"bling jewelery"
,"lottery numbers"
,"pine furniture"
,"pizza delivery"
,"cinema listings"
,"Rotaract"
,"Charity Clubs"
,"wedding lists"
,"photographers"
,"flash limousines"
,"car hire"
,"London hotels"
,"bed and breakfast hotels"
,"theme parks with frightening roller coasters"
,"Flowers for your loved one(s)"
,"chocolate, chocolate and more chocolate"
,"Nike Trainers"
,"Reebok Trainers"
,"Animal Clothing"
,"Ben Sherman Clothing"
,"Disney Stores"
,"Centre Parks"
,"Heathrow Airport"
,"All about the new Wembley"
,"IKEA Funiture"
,"Go-Large Diamonds"
,"Necklaces for a special occassion"
,"Whats on Saturday?"
,"speed dating"
,"TV Guide"
,"best big brother"
];
return words;
}
