











// homepage quote slideshow
var counter = 0;
var stamina = 10000;
var intermission = 500;

var fadeContent = new Array(
"<p>Anyone who has passed by my house in recent months has RAVED about my gorgeous flower beds. Several friends have asked who did them and I was happy to give them Big Blue Sky's number</p><p>~ Angela</p>",
"<p>You are the best and deserve all the best. Keep up the good work. You have made our life much easier with your courteous service and professionalism. Cassy and I really appreciate Big Blue Sky Landscaping's hard work.</p><p>~ Tim</p>",
"<p>I am VERY pleased with how the yard looks. Maybe now, my backyard will not be such an embarrassment to my neighbors!</p><p>Thanks for all your hard work. Again, I am very pleased.</p><p>~ David</p>",
"<p>Our property looks GREAT!</p><p>~ Ann</p>",
"<p>I love your work and the fact that you are professional who knows what to do.</p><p>~ Anne L.</p>",
"<p>Thank you for a job well done. We love what you did.</p><p>~ Heath and Marcus</p>",
"<p>Everything looks great these days, thanks!</p><p>~ Becky</p>",
"<p>As busy homeowners, my wife and I have been extremely pleased with Big Blue Sky Landscaping. Scott has consistenly demonstrated his true knowledge of landscaping. He is always prompt to respond to any questions that may arise and he keeps us updated as to the schedule of services he is providing. Big Blue Sky Landscaping has really made it easy for us to enjoy our home knowing that our lawn is well cared for. It is for these reasons that we have referred Big Blue Sky Landscaping to our neighbors and friends and will continue to do so in the future. Thanks...</p><p>~ Joe</p>"
);

function fadeInContent() {
    if(counter == fadeContent.length) counter = 0;
    $('#fadeshow').html(fadeContent[counter]);
    $('#fadeshow').fadeIn('slow');
    setTimeout("fadeOutContent()",stamina);
	return false;
}

function fadeOutContent() {
    $('#fadeshow').fadeOut('slow');
    ++counter;
    setTimeout("fadeInContent()",intermission);
	return false;
}
