 
$(function(){
    $('.headertitle img:gt(0)').hide();
    setInterval(function(){
      $('.headertitle :first-child').fadeOut('slow')
         .next('img').animate({opacity:1},500).fadeIn('slow')
         .end().appendTo('.headertitle');}, 
      4000);
});



$(function(){
    $('.crossfade').show();
    setInterval(function(){
      $('.crossfade p:first-child').fadeOut('fast').animate({opacity:0.5},1700)
         .next('p').animate({opacity:1},1700).fadeIn('slow')
         .end().appendTo('.crossfade');}, 
      4000);
});

$(function() {
$('.crossfade').show();
$('.crossfade').css({opacity: 1});
$(".crossfade p:first-child").appendTo(".crossfade ");
setInterval(function() {
  $(".crossfade p:first-child").hide().appendTo(".crossfade").fadeIn(1700);
}, 5000);

});
