// JavaScript Document



//START TESTIMONIALS
var textnumber = 2 ; 
var randomnumber = Math.random() ; 
var rand1 = Math.round( (textnumber-1) * randomnumber) + 1 ; 
text = new Array 

text[1] = '<p id="testimonials">"During the past five years of working with Bernadette, I have never ceased to be amazed at how quickly she can assess a room and determine what it needs to become fabulous! She just has this unique ability to add that something special to make a home stunning. I give all my clients a complimentary one-hour consultation with Bernadette to stage their home to sell.  It\'s an absolute \'must\' in today\'s market.  When a home is staged by Bernadette, buyers feel welcomed into it, and can immediately see themselves living there.  They feel like they\'re walking into a showhome!"<br />Michelle Carlsen, Homelife Benchmark Realty Walnut Grove.<br /><a href="http://www.michellecarlsen.com/" target="_blank">www.michellecarlsen.com</a></p>';
text[2] = '<p id="testimonials">"Bernadette provided us with an incredible new look for our living and dining areas.  She figured out how we use these rooms and gave us a comfortable and elegant look. Bernadette gave us her recommendations for paint choices, flooring, countertops and placement of valuable antiques and family artwork. We both felt comfortable working with Bernadette in implementing our family lifestyle (4 children!)  with her exciting ideas.  We would totally recommend Bernadette to other families who would like a fresh new look in areas of their home."<br />Janine N.  Langley, BC </p>';


var mytext = text[rand1];
//END  TESTIMONIALS


//Second Function
var theImages = new Array()

//Random-loading images

theImages[0] = "/images/kitchen-1.jpg"
theImages[1] = "/images/living-room.jpg"
theImages[2] = "/images/bedroom.jpg"
theImages[3] = "/images/closet.jpg"
theImages[4] = "/images/stair.jpg"



var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
if(whichImage==0){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="356" height="238" alt="Staging and Redesign">');
}
else if(whichImage==1){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="356" height="238" alt="Staging and Redesign">');
}
else if(whichImage==2){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="356" height="238" alt="Staging and Redesign">');
}
else if(whichImage==3){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="356" height="238" alt="Staging and Redesign">');
}
else if(whichImage==4){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="356" height="238" alt="Staging and Redesign">');
}



}




