$(document).ready(function(){
	$('#headerText .rotator');
	setInterval(function(){
		$('#headerText .rotator').filter(':visible').fadeOut(1000,function(){
			if($(this).next('li.rotator').size()){
				$(this).next().fadeIn(1000);
			}
			else{
				$('#headerText .rotator').eq(0).fadeIn(1000);
			}
		});
	},10000);	
});	

