// JavaScript Document

var interval='';

$(function(){
	
	if($('#bgphotos img').length >1 )
	{
		interval=setInterval("swapimgs()",6000);
		
		}

		
		
		
});


function swapimgs(){
		
	
	if ( $('#bgphotos img:last').hasClass('selected')  )
	{
		$('#bgphotos img.selected').fadeOut('slow');
		$('#bgphotos img:first').fadeIn('slow',function(){
														$('#bgphotos img.selected').removeClass('selected');
														$(this).addClass('selected');																   
																		   });
	}else {
			$('#bgphotos img.selected').fadeOut('slow');
			$('#bgphotos img.selected').next('img').fadeIn('slow',function(){
																		$('#bgphotos img.selected').removeClass('selected');
																		$(this).addClass('selected');																   
																		   });
	}
	
	
	
}

