// Analyst Quotes
function getRandomAQ(nums)
{
    var ranNumAQ= Math.round(Math.random()*nums);
    return ranNumAQ;
}

var numberOfQuotesAQ = 4;

var quoteAQ = new Array();
quoteAQ[0]="DSL access clearly has become a mainstream business network access technology. As latency-sensitive business applications proliferate, the need for prioritizing data traffic over DSL is obvious. New Edge is offering businesses an opportunity to extend MPLS CoS over lower priced DSL.";
quoteAQ[1]="Recent Aberdeen research shows that businesses in various industry sectors want the ability to prioritize network traffic and achieve high level of application performance without actually spending a ton of money.";
quoteAQ[2]="What New Edge is offering is a major step towards a seamless telecommunications world in which networks transcend individual technologies. As such, it opens a host of market opportunities for New Edge and its partners in the RBA as well as offering smaller users unprecedented capabilities.";  
quoteAQ[3]="New Edge Networks' breakthrough Class of Service over DSL solution greatly meets this growing need and further gives SMBs 'enterprise-like' options and the ability to compete on a greater scale against enterprise businesses.";
quoteAQ[4]="This type of solution could be game-changing for the industry. It's one of those few offers that really does make headway in the industry and does something new that hasn't been out there before.";

var authorAQ = new Array();
authorAQ[0]="Erin Dunne, director of research services, Vertical Systems Group";
authorAQ[1]="Bojan Simic, communications research analyst, Aberdeen Group";
authorAQ[2]="Max Engel, research analyst, Frost & Sullivan";  
authorAQ[3]="Stephanie Atkinson, managing partner & principal analyst, Compass Intelligence";
authorAQ[4]="Brian Washburn, research director - Business Services, Current Analysis";

function replaceContentAQ() {
	randomNumberAQ = getRandomAQ(numberOfQuotesAQ);
	document.getElementById('quoteTextAQ').innerHTML = quoteAQ[randomNumberAQ];
	document.getElementById('quoteAuthorAQ').innerHTML = authorAQ[randomNumberAQ];
}


// Customer Quotes
function getRandomCQ(nums)
{
    var ranNumCQ= Math.round(Math.random()*nums);
    return ranNumCQ;
}

var numberOfQuotesCQ = 2;

var quoteCQ = new Array();
quoteCQ[0]="We needed a more reliable network and a provider who understands us. The solutions, level of contact and expertise that we get from New Edge make them the ideal network provider for us.";
quoteCQ[1]="We wanted to have a really flexible platform going into the future, and our ATM network would have handcuffed us. MPLS gives us much greater flexibility as well as better security and more bandwidth - at a lower overall cost.";
quoteCQ[2]="Our core services help customers increase uptime and productivity, reduce operating costs and enhance asset utilization. Our MPLS network from New Edge Networks brings these same benefits to our business locations.";  

var authorCQ = new Array();
authorCQ[0]="Dennis Mahon, Vice President of IT, AC Coin & Slot";
authorCQ[1]="Joel Commaford, Network Administrator, Nott Company";
authorCQ[2]="Paul Way, Information Technology Manager, Integrated Power Services";  

function replaceContentCQ() {
	randomNumberCQ = getRandomCQ(numberOfQuotesCQ);
	document.getElementById('quoteTextCQ').innerHTML = quoteCQ[randomNumberCQ];
	document.getElementById('quoteAuthorCQ').innerHTML = authorCQ[randomNumberCQ];
}

// Load initial quote
window.onload = replaceContentAQ;

