////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Bryce Homes Javascript functions
// This file includes a collection of functions for use on the Bryce Homes site
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

$(function()
{
   // rotate customer quotes
   setInterval('rotate_images()',6000);

});


function rotate_images()
{
   var current_image = $('#photos p a img:visible');
   var next_image = current_image.next().attr('tagName') != 'IMG' ? current_image.siblings('img:first') : current_image.next();

   current_image.fadeOut(3000);
   next_image.fadeIn(3000);
}