﻿window.onload=function(){
links();
testimonial();
}
//<img src=\'i/Fibre_Optics_1409_small.png\' width=\'150\' height=\'50\' alt=\'\'  />
function links()
{
var getLinks = document.getElementById("news_feat_item");
var text= new Array();
text[0]="<p>Join the <strong>WiMAX</strong> revolution! North Wales has been selected by Carrier Wales as the first area in its rollout plans. <a href=\'pdf/CWPR261109.pdf\' class=\'action pdf\'>Download our latest press release </a></p>";

text[1]="<p>Carrier Wales will be taking part in the FibreSpeed events in Wales over the next few months. </p>";

text[2]="<p>Outstanding business communication need not cost you the earth - Global business communication at local prices. <a href=\'pdf/CW_Price_Flyer_Side1.pdf\' class=\'action pdf\'>Download package information</a></p>";

var bit = Math.round(Math.random()*100) % 3;
getLinks.innerHTML = text[bit];
setTimeout("links()", 5*1000);
return false;
}

function testimonial()
{
var getTest = document.getElementById("feat_testimonial");
var text2= new Array();
text2[0]="<blockquote id='test_anchor' class='squarelogo'><p>We needed connectivity that was fast and reliable, and FibreSpeed was an attractive option. It gave us double the speed and bandwidth for less than we were paying for a leased line</p><p><cite><span class='fn'>Peter England</span> <span class='role'>Managing Director</span> <span class='org'><img src='i_cont/logo_anchor.gif' alt='Anchor Computer Systems' width='61' height='84' border='0' /></span></cite></p></blockquote>";

text2[1]="<blockquote><p>Connecting to FibreSpeed enables us to expand our remote digital services which will improve our business processes. Improved reliability and bandwidth mean that our plans to expand the business are no longer hampered by technology</p><p><cite><span class='fn'>Nathan Caley</span> <span class='role'>IT Director</span> <span class='org'><img src='i_cont/logo_westcoast.gif' alt='West Coast Energy' width='186' height='44' border='0' /></span></cite></p></blockquote>";

text2[2]="<blockquote><p>We conduct a great number of internet searches to gather information. If the system slows or there is a problem with the connection, it has a big impact on our business</p><p><cite><span class='fn'>Greg Wenden</span> <span class='role'>Head of Development</span> <span class='org'><img src='i_cont/logo_avox.gif' alt='Avox Ltd' width='233' height='46' border='0' /></span></cite></p></blockquote>";

var bit2 = Math.round(Math.random()*100) % 3;
getTest.innerHTML = text2[bit2];
setTimeout("testimonial()", 6*1000);
return false;
}
