////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Richport Javascript functions
// This file includes a collection of functions for use on the Richport site
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

$(function()
{
   // rotate home slideshow
   if($('#home_slideshow').length > 0) {
      setInterval('rotate_images("#home_slideshow")',10000);
   }

   // rotate community details slideshow
   if($('#community_slideshow').length > 0) {
      setInterval('rotate_images("#community_slideshow")',10000);
   }
});


function rotate_images(element)
{
   var current_image = $(element+' a:visible');
   var next_image = current_image.next().attr('tagName') != 'A' ? current_image.siblings('a:first') : current_image.next();

   current_image.fadeOut(3000);
   next_image.fadeIn(3000);
}