var words = ['personal','engaging','memorable','satisfying','collaborative','immersive','impactful'];
var ndx = 0;


// the timeouts here have to add up to the setInterval timeout
function rotate() {
	ndx = ndx < words.length-3 ? ndx+1 : 0;
	if ($.browser.msie) {
		$('#H1Attributes .word').html(words[ndx]);
	}
	else {
	$('#H1Attributes .word').fadeOut(1000,function(){
		$('#H1Attributes .word').html(words[ndx]).fadeIn(1000);
	});
	}
}

$(document).ready(function(){
	
	setInterval("rotate()",4000);

});






















