/*
Cross browser marquee script- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/


//Specify the marquee's width (in pixels)
var marqueewidth=420
//Specify the marquee's height (in pixels, pertains only to NS)
var marqueeheight=100
//Specify the marquee's scroll speed (larger is faster)
var speed=3
//Specify the marquee contents
var marqueecontents=':: <a href="http://money.cnn.com/2009/10/13/technology/cisco_starent_deal/?postversion=2009101311">cisco buys wireless web firm starent networks for $2.9 billion</a> :: <a href="http://www.itproportal.com/portal/news/article/2009/10/9/fcc-investigate-wholesale-pricing-strategy-us-telcos/">fcc to investigate wholesale pricing strategy of telcos</a> :: <a href="http://tvnz.co.nz/business-news/huge-jump-in-wireless-use-expected-3045954">the total number of cellphone and other wireless subscribers in new zealand will jump to 6.2 million by 2013, with vodafone holding a 52.2 market share, says an industry analyst.</a> :: <a href="http://www.mckinseyquarterly.com/High_Tech/Strategy_Analysis/What_shape_will_the_wireless_web_take_2425">what shape will the wireless Web take?</a> :: <a href="http://newscenter.verizon.com/">leading analyst firm positions verizon in leaders quadrant for u.s. telecommunications service providers</a> :: <a href="http://www.cnet.com/8301-17918_1-10364588-85.html">verizon wireless introduces htc imagio - cnet</a> :: <a href="http://www.google.com/hostednews/ap/article/ALeqM5gPpexsZ50ctqatfMW1V1_yB_trfQD9ATRT604">ford unveils 2011 f-series super duty truck with fleet telematics and diagnostic system</a> :: <a href="http://www.reuters.com/article/technologyNews/idUSTRE59001W20091001">nortel to sell gsm business, bids invited by november 5 </a>:: '

if (document.all)
document.write('<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write('<nobr>'+marqueecontents+'</nobr>')
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.width
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.left-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.left=marqueewidth
scrollit()
}
}

window.onload=regenerate2
