////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Bryce Homes Javascript functions
// This file includes a collection of functions for use on the Bryce Homes site
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

$(function()
{
   // rotate customer quotes
   setInterval('rotate_quotes()',15000);
});


function rotate_quotes()
{
   var current_quote = $('.customer_quote:visible');
   var next_quote = current_quote.next().attr('tagName') != 'P' ? current_quote.siblings('p:first') : current_quote.next();

   current_quote.fadeOut();
   next_quote.fadeIn();
}