$(function() {
	
	var interval_time = 5000;
	
	$('p.house img').hide();
	$('p.chandler img:first, p.villagio img:first, p.stonegate img:first, p.fiesta img:first').show();
	
	var i = 0;
	var t = setInterval(function() {
		if (i > 1) {
			i = 0;
		} else {
			i++;
		}
		
		$('p.chandler img:visible').fadeOut(function() {
				$('p.chandler img:eq('+i+')').fadeIn();
			});
		setTimeout(function() {
			$('p.villagio img:visible').fadeOut(function() {
				$('p.villagio img:eq('+i+')').fadeIn();
			});
		}, 100);
		
		setTimeout(function() {
			$('p.stonegate img:visible').fadeOut(function() {
				$('p.stonegate img:eq('+i+')').fadeIn();
			});
		}, 200);
		
		setTimeout(function() {
			$('p.fiesta img:visible').fadeOut(function() {
				$('p.fiesta img:eq('+i+')').fadeIn();
			});
		}, 300);
	}, interval_time);
	
});
