// JavaScript Document
// INSTRUCTIONS:
// Use "showArxxQuote()" to insert quote on html page

//banner rotation
var author = new Array();
author[0] = 'Jason Brown, Arxx Regional Sales Manager – Western Division';
author[1] = 'Alan Mill, Arxx Regional Manager – Rocky Mountains';
author[2] = 'Randy Daniels, Arxx Regional Manager – Southwest USA';
author[3] = 'Tom Patton, Manager, Arxx Technical Support – Eastern Division';
author[4] = 'Ron Funk, Arxx Regional Manager – Western Canada';
author[5] = 'Randy Daniels, Arxx Regional Manager – Southwest USA';
author[6] = 'Bob Geroux, Business Manager – Northeast USA';
author[7] = 'Tom Patton, Manager, Arxx Technical Support – Eastern Division';
author[8] = 'Phil Stafrace, Arxx Technical Support Manager – Western Division';
//author[9] = 'Jeff Kuiack, Arxx Regional Manager – Ontario';
author[9] = 'Glen Klassen, Arxx Regional Manager – Manitoba, Saskatchewan, North Central USA';
author[10] = 'Dave Sowers, Arxx Regional Manager – North Central USA';

var authorImageTag = new Array();
authorImageTag[0] = '<img src="/images/jason_brown_039.png" width="165" height="270" alt="Jason Brown" />';
authorImageTag[1] = '<img src="/team/images/alan_mill_1.jpg" width="190" height="209" alt="Alan Mill" />';
authorImageTag[2] = '<img src="/team/images/randy_daniels_1.jpg" width="123" height="250" alt="Randy Daniels" />';
authorImageTag[3] = '<img src="/team/images/tom_patton.jpg" width="115" height="250" alt="Tom Patton" />';
authorImageTag[4] = '<img src="/team/images/ron_funk_1.jpg" width="98" height="280" alt="Ron Funk" />';
authorImageTag[5] = '<img src="/team/images/randy_daniels_1.jpg" width="123" height="250" alt="Randy Daniels" />';
authorImageTag[6] = '<img src="/images/bob_geroux_1.gif" width="171" height="250" alt="Bob Geroux" />';
authorImageTag[7] = '<img src="/team/images/tom_patton.jpg" width="115" height="250" alt="Tom Patton" />';
authorImageTag[8] = '<img src="/images/phil.gif" width="190" height="269" alt="Phil Stafrace" />';
//authorImageTag[9] = '<img src="/images/kuiack.png" width="138" height="270" alt="Jeff Kuiack" />';
authorImageTag[9] = '<img src="/images/glen_klassen.jpg" width="119" height="260" alt="Glen Klassen" />';
authorImageTag[10] = '<img src="/team/images/dave_sowers_1.jpg" width="176" height="221" alt="Dave Sowers" />';

var authorQuote = new Array();
authorQuote[0] = 'Build with the winning team. The number one product plus championship support. Build with Arxx!';
authorQuote[1] = '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[2] = 'Wrap your home in a warm soft hug. Arxx walls 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[3] = '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[4] = '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[5] = 'Wrap your home in a warm soft hug. Arxx walls 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[6] = '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[7] = '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[8] = 'Time is money! The one step construction of the Arxx wall system saves time and labor because you install a reinforced concrete structure, insulation, air/vapor barrier, and strapping  all at the same time.';
//authorQuote[9] = 'Our commitment to organization and planning helps you build long-term sustainable growth.';
authorQuote[9] = '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.';
authorQuote[10] = 'We are true to our word – if we say we’ll be there to help – we are. We are committed to help you grow  your business.';

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('<p>'+authorImageTag[quoteRandom]+'</p> ');
	document.write('<p class="quote">“'+authorQuote[quoteRandom]+'”'); 
	document.write(' <strong>'+author[quoteRandom]+'</strong></p>');
}

					
          