function setDate() {    
    var jetzt = new Date();
    var Monat = new Array("Jan", "Feb", "M&auml;r", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez");
    var datum = jetzt.getDate() + ". " + Monat[jetzt.getMonth()] + " " + jetzt.getFullYear();
    $("#inhalt .date").html(datum);
    $("#copyrightyear").text(jetzt.getFullYear());
}

function addScrollNext(intIndex) {
  $.scrollTo($('.post:eq('+(intIndex)+')'),750, {
    offset:-10, onAfter:function(){ 
      $('.post:eq('+(intIndex)+')').animate( { borderColor:"#159BB0", backgroundColor:"#CFF4F9" }, 600); 
      // $('.post:eq('+(intIndex)+')').animate( { borderColor:"#fc0", backgroundColor:"#fffbed" }, 600);
      // $('.post:eq('+(intIndex)+')').animate( { borderColor:"#fc0", backgroundColor:"#fffbed" }, 1000);
      $('.post:eq('+(intIndex)+')').animate( { borderColor:"#d8d4ca", backgroundColor:"#fff" }, 1000); 
    }
  });
}

