$(function(){
	i = 1;
	text = new Array();
	text[0] = '<strong class="em">67%</strong> of employees think more highly of their employer because of their health benefit plan.*';
	text[1] = '<strong class="em">66%</strong> of employees agree that their health benefit plan is a strong incentive to stay with their current employer.*';
	text[2] = '<strong class="em">52%</strong> of employees would choose their health benefit plan over an additional week&rsquo;s vacation.*';
	text[3] = '<strong class="em">92%</strong> of employees would choose their plan over an extra cash compensation of $15,000.*';
	text[4] = '<strong class="em">59%</strong> of employees would choose health benefits over a more generous pension plan.*';
	setInterval(function() {
		if (i > (text.length - 1)) {
			i =0;
		}
		$('#hmpg_img p').fadeOut('slow', function(){
			$('#hmpg_img p').html(text[i]).fadeIn('slow');
			i++;
		});
	}, 8000);
});


