$(function(){
    $('.headertitle h1:gt(0)').hide();
    setInterval(function(){
      $('.headertitle :first-child').animate({opacity:0.9},100).fadeIn('fast');
	  $('.headertitle :first-child').animate({opacity:1},2000).fadeIn('fast');
	  $('.headertitle :first-child').animate({opacity:0.7},100).fadeOut('fast');
	  $('.headertitle :first-child').next('h1').end().appendTo('.headertitle');	  
	  }, 
      3000);
});