// JavaScript Document
// INSTRUCTIONS:
// Use "showArxxQuote()" to insert quote on html page

//banner rotation
var author = new Array();
author[0] = 'Alan Mill, ARXX Regional Manager</dd><dd class="meta">Rocky Mountains';
author[1] = 'Randy Daniels, Commercial Sales Manager - West</dd><dd class="meta">Southwest USA';
author[2] = 'Tom Patton, Manager of Technical Applications</dd><dd class="meta">Eastern Division';
author[3] = 'Ron Funk, ARXX Regional Manager</dd><dd class="meta">Western Canada';
author[4] = 'Randy Daniels, Commercial Sales Manager - West</dd><dd class="meta">Southwest USA';
author[5] = 'Bob Geroux, Business Manager</dd><dd class="meta">Northeast USA';
author[6] = 'Tom Patton, Manager of Technical Applications</dd><dd class="meta">Eastern Division';
author[7] = 'Glen Klassen, Manager of Technical Training and Bracing</dd><dd class="meta">Manitoba, Saskatchewan, North Central USA';

var authorQuote = new Array();
authorQuote[0] = 'When you are creating your dream home, the word “can’t” should not be spoken. With the ARXX system “CAN” is the only word we know. If you can imagine it – with ARXX you can build it.';
authorQuote[1] = 'Wrap your home in a warm soft hug. ARXX forms provide continuous unbroken expanded polystyrene insulation on both sides of your super-strong reinforced concrete. In the summer it’s like an ice cream sandwich, in the winter it’s like two layers of a cozy quilt.';
authorQuote[2] = 'We can answer your questions on energy efficiency, life cycle cost savings, environmentally friendly  materials, indoor air quality, security and overall comfort. We will  help you build a home that is environmentally conscientious, and  a very smart investment.';
authorQuote[3] = 'When you build with ARXX you get peace and quiet AND peace of mind! With two layers of expanded polystyrene sandwiching reinforced concrete an ARXX wall keeps the outside noise – where it belongs – outside. Once you live in an ARXX home you too will share our passion!';
authorQuote[4] = 'Wrap your home in a warm soft hug. ARXX forms provide continuous unbroken expanded polystyrene insulation on both sides of your super-strong reinforced concrete. In the summer it’s like an ice cream sandwich, in the winter it’s like two layers of a cozy quilt.';
authorQuote[5] = 'We have so many customers who build ARXX foundations, then discover that their basements are the most comfortable place in the whole house! They tell us that they should have built their entire house with ARXX. It’s just so much better!';
authorQuote[6] = 'ARXX forms and walls have more certifications,  more listings and approvals, and have completed more code related testing than any other ICF on the market. What’s more, ARXX has a track record of over ten years of success in real world construction';
authorQuote[7] = 'When you get down to the facts and compare walls feature to feature, ARXX is clearly the number one ICF. We  have a great product, a great system and great support.';

var j = 0;
var p = author.length;
var preBuffer = new Array();
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = author[i]
}

var quoteRandom = Math.round(Math.random()*(p-1));
function showArxxQuote(){
	document.write('<blockquote class="quotebig">');
	document.write('<dl><dt><span class="bqstart">&#8220;</span>'+authorQuote[quoteRandom]+'<span class="bqend">&#8221;</span></dt>');
	document.write('<dd class="author">'+author[quoteRandom]+'</dd></dl></blockquote>');
}