var tWidth='100%'; // width (in pixels) var tHeight='16px'; // height (in pixels) var tcolour=''; // background colour: var moStop=true; // pause on mouseover (true or false) var fontfamily = ''; // font for content var tSpeed=3; // scroll speed (1 = slow, 5 = fast) // enter your ticker content here (use \/ and \' in place of / and ' respectively) var content="HM Treasury committee questions costs of HMRC?s Making Tax Digital programme -Just Eat uses startup accelerator to stay ahead in foodtech -Gigaclear wins Northamptonshire BDUK contract -Nutanix, Simplivity and Pivot3 lead hyper-converged pack: Forrester -Plastics maker dumps tape for Arcserve backup appliance and cloud -Top 10 broadband stories of 2016 -NVMe over fabrics vs Fibre Channel, Ethernet, Infiniband -CityFibre targets underserved businesses with fibre broadband -Future Fifty and Upscale ? some of the initiatives behind the ever-growing tech scene -Coop Denmark replaces NetApp with VMware software-defined VSAN -White space spectrum to bring wireless broadband to Isle of Arran -Software-defined storage: The pros and cons, and what is available -Nutanix puts software-defined networking in hyper-converged boxes -BT boosts broadband speeds for SME and consumer customers -Scale drops three-node minimum for HC3 hyper-converged -VMworld 2016 vox pop: VMware users cool about VSAN -Focus on SME broadband to build Northern Powerhouse, says report -Hypergrid adds metered usage and networks to hyper-converged kit -Digital Catapult sets up London-wide IoT network -Italian bottle maker deploys 88TB of Syneto hyper-converged storage -"; // Simple Marquee / Ticker Script // copyright 3rd January 2006, Stephen Chapman // permission to use this Javascript on your web page is granted // provided that all of the below code in this script (including this // comment) is used without any alteration var cps=tSpeed; var aw, mq; var fsz = parseInt(tHeight) - 4; function startticker() { if (document.getElementById) { var tick = '
<\/div><\/div>'; document.getElementById('ticker').innerHTML = tick; mq = document.getElementById("mq"); mq.style.left=(parseInt(tWidth)+10)+"px"; mq.innerHTML=''+content+'<\/span>'; aw = document.getElementById("tx").offsetWidth; lefttime=setInterval("scrollticker()",50); } } function scrollticker() { mq.style.left = (parseInt(mq.style.left)>(-10 - aw)) ?parseInt(mq.style.left)-cps+"px" : parseInt(tWidth)+10+"px"; } window.onload=startticker;