/*
	COMIT JAVASCRIPT
	CREATED: 01.02.08
	MODIFIED: 18.02.08
	AUTHOR: ANDY FIELD
*/

/* QUOTE GENERATOR ********************************************************/

	var tickercontents=new Array()
	tickercontents[0]='<p>India officials expect the number of wireless phones to out number wirelines by the end of 2004.<\/p><p><a href=\"/about/didyouknow.jsp#01\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[1]='<p>Wireless pedestrians can cause \"Pedlock\". According to a New York Times report, pedestrians on wireless phones are causing \"pedlock\" or \"ped-rage\".<\/p><p><a href=\"/about/didyouknow.jsp#02\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[2]='<p>Wi-Fi provider Broadreach Networks has installed wireless hotspots and internet terminals around the Wimbledon tennis complex near London.<\/p><p><a href=\"/about/didyouknow.jsp#03\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[3]='<p>Panasonic have put their CF-18 Toughbook to the ultimate test. Taken on an endurance test in Canada\'s western Arctic, the CF-18 survived the roller coaster routine of sled travel and temperatures of -51&deg;c.<\/p><p><a href=\"/about/didyouknow.jsp#04\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[4]='<p>Africa is one of the fastest-growing wireless markets in the world, with an average annual subscriber increase of 58%.<\/p><p><a href=\"/about/didyouknow.jsp#05\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[5]='<p>In 1992, an avid supporter of the portable-office concept, set out to prove that mobile computing was already a reality by trekking into the Colorado Rockies with everything he would need to run his New York City office by remote control.<\/p><p><a href=\"/about/didyouknow.jsp#06\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[6]='<p>AginfoLink has brought Wireless technology to the farm for tracking livestock. Labelled after birth with an RFID tag, animals are tracked across a farm-to-market data network.<\/p><p><a href=\"/about/didyouknow.jsp#07\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[7]='<p>In the U.K., wireless phones are being used by doctors at the Bristol Royal Infirmary to treat patients suffering from Cystic Fibrosis.<\/p><p><a href=\"/about/didyouknow.jsp#08\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[8]='<p>Boeing and iPass Plan Wi-Fi In the Sky Remote access provider iPass plans to add Boeing\'s Connexion in-flight Wi-Fi service to its list of hotspots.<\/p><p><a href=\"/about/didyouknow.jsp#09\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[9]='<p>A team of doctors in the U.K. are using wireless phones to record and organize information from diabetes patients and send it directly to hospitals for analysis and advice.<\/p><p><a href=\"/about/didyouknow.jsp#10\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[10]='<p>In London alone, 63,135 mobile phones, 5838 Pocket PCs and 4973 laptops were left by passengers in licensed taxi cabs during the past six months - an average of three phones per taxi.<\/p><p><a href=\"/about/didyouknow.jsp#11\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[11]='<p>Wireless subscribers are finding a new use for their mobile phones in Malaysia. Political parties are using SMS to send daily messages to voters.<\/p><p><a href=\"/about/didyouknow.jsp#12\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[12]='<p>A block of wood served as an inspiration for the Palm handheld?<\/p><p><a href=\"/about/didyouknow.jsp#13\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[13]='<p>Indonesia plans to use text messages to alert people of impending disasters predicted by early warning systems.<\/p><p><a href=\"/about/didyouknow.jsp#14\" class=\"morebtn\">More...</a><\/p>'
	tickercontents[14]='<p>According to reports, new wireless technology is ensuring that inhabitants of China\'s largest panda reserve are never more than a phone call away.<\/p><p><a href=\"/about/didyouknow.jsp#15\" class=\"morebtn\">More...</a><\/p>'

	
	var tickdelay=7000

	var currentmessage=0

	function changetickercontent(){
	if (document.layers){
	document.statement.document.tickernssub.document.write(tickercontents[currentmessage])
	document.statement.document.tickernssub.document.close()
	}
	else
	crosstick.innerHTML=tickercontents[currentmessage]

	if (currentmessage==tickercontents.length-1) currentmessage=0
	else currentmessage++
	setTimeout("changetickercontent()",tickdelay)
	}

	function start_ticking(){
	if (document.layers)
	document.statement.visibility="show"
	else
	crosstick=document.getElementById? document.getElementById("didyouknow") : document.all.statement
	changetickercontent()
	}