	var quotes=new Array();
	quotes[0]="&quot;My husband and I are both geologists and we know a few things about rock formations.  We chose Eldorado Stone for extensive interior and exterior coverage because it is so natural looking.&quot; <span class='JamesSmallText'><strong><em>- P.N., Custom Homeowner, Bragg Creek </em></strong></span>";
	quotes[1]="&quot;... work was impeccable. I have nothing but good things to say about your company and service… a friend of mine is building in Grandview and was asking me on the weekend who did our stone work at which I was quick to offer ‘Ecostone’. …there were a few trades that met or exceeded our expectations and I include Ecostone in that small group.&quot;<span class='JamesSmallText'><strong><em> – K.R. Contractor, Calgary</em></strong></span>";
	quotes[2]="&quot;Your prices are the best in town.&quot;<span class='JamesSmallText'><strong><em>-A.J., Mason, Calgary</em></strong></span>";
	quotes[3]="&quot;We would like to say thank-you again so much for everything you and (the masons) have done for us.&quot;&quot;(the masons) were very hard workers, very efficient and nice to deal with. They did a beautiful job, it looks terrific. We have received so many great comments from people going by.&quot;<span class='JamesSmallText'><strong><em> – K&G.M, Custom Homeowners, Calgary</em></strong></span>";
	quotes[4]="&quot;Yes we’re very happy with the way it turned out. Looks SO much better. We wish we had done it years ago.&quot;<span class='JamesSmallText'><strong><em> – A.M. Custom Homeowner, Calgary </em></strong></span>";
	quotes[5]="&quot;I wish all our sub-contractors were as prompt and efficient as Ecostone.  You do the work well and on time.  Are you sure you won't do granite counter-tops for us?&quot;<span class='JamesSmallText'><strong><em>- J.L., Contractor, Calgary </em></strong></span>";
	quotes[6]="&quot;Looks absolutely awesome&quot;<span class='JamesSmallText'><strong><em>– K.W., Custom Homeowner, Okotoks</em></strong></span>";
	quotes[7]="&quot;You know, we considered natural Rundle Stone but when we added up all the extra costs to reinforce under the fireplace, the angle iron and other metal it just didn't seem worth it.  To say nothing of the extra weeks to install it.  We are more than happy with Ecostone's Rundle-look stone and we pocketed the savings.  And besides our neighbors and visitors think it's the real thing anyway.&quot;<span class='JamesSmallText'><strong><em>- J.G., Custom Homeowner, Canmore</em></strong></span>";
	quotes[8]="&quot;Thanks for a great job.&quot;<span class='JamesSmallText'><strong><em>– G.&M., Custom Homeowners, Calgary</em></strong></span>";
	quotes[9]="&quot;Another wonderful job! And thanks for doing it so promptly. &quot;<span class='JamesSmallText'><strong><em>– J & D, Contractors, Cochrane</em></strong></span>";
	quotes[10]="&quot;…I also want to pass on a thank you to (the masons) who did the install. They did a fantastic job, our fireplace is beautiful! &quot;<span class='JamesSmallText'><strong><em>– T.M., Custom Homeowner, Calgary</em></strong></span>";
	quotes[11]="&quot;Many thanks for a wonderful job! &quot;<span class='JamesSmallText'><strong><em>– J.&A. Custom Homeowners, Calgary</em></strong></span>";
	quotes[12]="&quot;Thank you for the great work and great product!&quot;<span class='JamesSmallText'><strong><em>– K.T., Contractor, Calgary</em></strong></span>";
	quotes[13]="&quot;Thank you for your help with our rock work. (We) are very happy with the end result, …  again thank you&quot;<span class='JamesSmallText'><strong><em>– R, Custom Homeowner, Calgary</em></strong></span>";
	quotes[14]="&quot;Thank you for the awesome job done on (the home) it looks fantastic! &quot;<span class='JamesSmallText'><strong><em>– T., Home Builder</em></strong></span>";
	quotes[15]="&quot;The job your crew did was outstanding.&quot;<span class='JamesSmallText'><strong><em>– L., Custom Homeowner, Calgary</em></strong></span>";
	quotes[16]="&quot;We just wanted to thank you … and to let you know we are very pleased with the outcome.&quot;<span class='JamesSmallText'><strong><em>– G.& K. S. Custom Homeowner, Calgary</em></strong></span>";
	quotes[17]="&quot;Thanks for a wonderful job on our fireplace! Looks great and we are extremely pleased.&quot;<span class='JamesSmallText'><strong><em>– D.&S. M. Custom Homeowner, Calgary</em></strong></span>";
	quotes[18]="&quot;Went above and beyond to improve the look of the fireplace. … He really is good at what he does.&quot;<span class='JamesSmallText'><strong><em>-S.R., Custom Homeowner, Calgary</em></strong></span>";
	
	function randomQuote() {
		var i=Math.floor(Math.random()*quotes.length);
		document.getElementById("random-testimony").innerHTML=quotes[i];
	}
	
	
	var images=new Array();
	for (x=0;x<25;x++)
	{
		a = x + 1;
		images[x]="<img src='images/top_banner/" + a + ".jpg' />";
	}	
	
	
	function randomImages() {
		document.getElementById("random-image1").innerHTML=images[Current[0]];
		document.getElementById("random-image2").innerHTML=images[Current[1]];
		document.getElementById("random-image3").innerHTML=images[Current[2]];
		document.getElementById("random-image4").innerHTML=images[Current[3]];
		document.getElementById("random-image5").innerHTML=images[Current[4]];
	}
	
var Found=false
var Current = new Array()
var NumUnique=5  //The number of unique numbers required
var Count=0
var Current = new Array(NumUnique)
GetUnique()
  function GetUnique()
  {
    for (i=0;Count<NumUnique;Count++)
    {
      Found=false
      var rndValue = get_random()
      var j=0
      for (j=0;j<Current.length;j++)
      {
        if (Current[j] == rndValue)
        {
          Found=true
          break
        }
      }
      if (Found)
      {
        Count--
      } 
	  else 
	  {
        Current[Count]=rndValue
      }
    }
  }
  function get_random()
  {
    var ranNum= Math.round(Math.random()*images.length);
	if(ranNum == 25)
	{
		return ranNum-1;
	}
	else
	{
		return ranNum;
	}
  }
