$(document).ready(function(){
  
  function showEntry(){
	  $(this).css('visibility','visible');
	  var year = $('.year', this).text();
	  var month = $('.month', this).text().slice(0,3);
	  var day = $('.day', this).text();
	  var badge = Date.parse(month + " " + day + " " + year);
	  var today=new Date().getTime();
      var badge = today - badge;
      if(badge < '1209600000'){
        $(this).append('<div class="badge"><img alt="New" src="/Images/Starfish.png"></div>');
	  };  
  }
  
  $('#blog.home a').each(function(){
	var url=$(this).attr('href');
     $(this).load(url + ' #blog .header', showEntry);
  });
 
  $('#blog.home li').hover(
      function () {
        $(this).addClass('hover');
	  }, 
      function () {
        $(this).removeClass('hover');
   });
  
});