$(document).ready(function(){
	
	var currentProperty = 'wadegreen'
	var currentImage = 'images/wadegreen.jpg'
	var currentLocation = 'Kennesaw, GA'
	var currentTitle = 'Wade Green Village'
	
	function contentLoop(){
		$('#featured-properties img, h5, h6').fadeOut('slow', function(){
			setCurrentProperty();
			$('#featured-properties img').attr('src', currentImage);
			$('h5').text(currentTitle);
			$('h6').text(currentLocation);
			$(this).fadeIn('slow');
		});
	}
	
	function setCurrentProperty(){
		if (currentProperty == 'wadegreen'){
			currentProperty = 'rome'
			currentImage = 'images/rome.jpg'
			currentLocation = 'Rome, GA'
			currentTitle = 'Charles Hight Square'
		} else {
			currentProperty = 'wadegreen'
			currentImage = 'images/wadegreen.jpg'
			currentLocation = 'Kennesaw, GA'
			currentTitle = 'Wade Green Village'
		}
	}
	
	setInterval(contentLoop, 5000);
	
});
