/************************************************ Fading Ticker Tape Script- © Dynamic Drive (www.dynamicdrive.com)* This notice must stay intact for use* Visit http://www.dynamicdrive.com/ for full source code***********************************************///default speed is 4.5 seconds, Change as desiredvar speed=5000var news=new Array()news[0]="<a href='http://www.codima-uk.co.uk/about.shtml'>Networks Unlimited - Official UK Codima Technologies Partner</a>"news[1]="<a target='newWindow' href='http://www.codimatech.com/dl/press/Codima%20Press%20release%20Award%20Innovations%20Preis%202007.htm'>autoMap&#153; from Codima Toolbox has been awarded as \"Excellent software product 2007\" by Initiative Mittelstand, Innovation Award 2007.</a>"news[2]="<a target='newWindow' href='http://www.codimatech.com/dl/press/Codima%20Toolbox%20Solutions%20Now%20Rated%20Avaya%20Compliant%20June%2012%202007.htm'>autoVoIP&#153;, autoMap&#153; and autoAsset&#153; accepted as Avaya Compliant</a>"news[3]="<a href='http://www.netunlim.com/action.lasso?-response=/master_site/pages/callback.html&-token=[token_value]&-nothing' target='newWindow'>Need to speak with one of our networking consultants? - Call  on 0800 085 06661 (Freephone UK callers only) or click here for us to call you!</a>"news[4]="<a href='http://www.sonicwall.co.uk/'>Did you know - That we are the longest serving SonicWALL Gold Partner in the UK? - Click here for details.</a>"//expand or shorten this list of messages as desiredvar fadescheme=1 //set 0 to fade bgcolor from (white to black), 1 for (black to white)var hex=(fadescheme==0)? 255 : 153var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(153,153,153)"var endcolor=(fadescheme==0)? "rgb(153,153,153)" : "rgb(255,255,255)"var frame=20;var ie=document.allvar ns6=document.getElementByIdvar ns4=document.layersi=0tickerobject=ie? subtickertape: ns6? document.getElementById("subtickertape") : document.tickertape.documentfunction regenerate(){window.location.reload()}function regenerate2(){if (document.layers)setTimeout("window.onresize=regenerate",450)}function bgcolorfade() {	         	// 20 frames fading processif(frame>0) {	hex=(fadescheme==0)? hex-12 : hex+12 // increase or decrease color value depd on fadeschemetickerobject.style.backgroundColor="rgb("+hex+","+hex+","+hex+")"; // Set color value.frame--;setTimeout("bgcolorfade()",20);	}else{tickerobject.style.backgroundColor=endcolor;frame=20;hex=(fadescheme==0)? 255 : 153}   }function updatecontent(){if (ie||ns6)bgcolorfade()if (ns4){tickerobject.subtickertape.document.write('<span class="subtickertapefont">'+news[i]+'</span>')tickerobject.subtickertape.document.close()}else tickerobject.innerHTML=news[i]if (i<news.length-1)i++elsei=0setTimeout("updatecontent()",speed)}