// JavaScript Document
var slideShowHolder = "#bodyRightBox";  //The ID of the container holding your slide show pics
var slideShowDelay = 4000;

$(document).ready(function(){
	$(slideShowHolder + ' div').css('position','absolute');
	$(slideShowHolder + ' div:not(:first-child)').css('display','none');
	$(slideShowHolder + ' div:first-child').addClass('show');
});
intval=window.setInterval( "cyclePics()", slideShowDelay);

function cyclePics() {
	var current = ($(slideShowHolder + ' div.show')?  $(slideShowHolder + ' div.show') : $(slideShowHolder + ' div:first'));
	if(current.next('div').length == 0)  { next =  $(slideShowHolder + ' div:first'); } else { next = current.next('div');  }
	 next.addClass('show');
	 current.removeClass('show');
	 $(next).fadeIn( 2000 );
     $(slideShowHolder + ' div').not(next).fadeOut( 2000 );
}
