var banner_overlay = ['Transit Orientated Neighborhoods','Communities for Higher Living','Responsive Customer Service','Superior Locations','Beautiful Streetscapes','Affordable Luxury','Brand-Spanking New','High-Speed Connectivity','Award-Winning Designs','Upscale Standard Features','Dramatic Architecture'];

$(document).ready(
	function(){
		fadeIn();
	}
);

function changeText() {
	var randNum = Math.floor( Math.random () * banner_overlay.length + 1 );
	$('#HEADER_BANNER').html('');
	$('#HEADER_BANNER').html(banner_overlay[randNum-1]);
}
	
function fadeOut() {
	$('#HEADER_BANNER').animate(
		{"top": "+=60px", opacity: 0.0 }, 
		2000, 
		function() {
			fadeIn();
		}
	);
}

function fadeIn() {
	changeText();
	
	$('#HEADER_BANNER').animate(
		{ "top": "35px", opacity: 1 }, 
		2000, 
		function() {
			setTimeout('fadeOut()', '5000');
		}
	);
}
