$(document).ready(function(){
	
	/* archive */
	var archiveHeight = $('#entries').height();
	
	$('#switch').click(function(){
		
		if($(this).hasClass('open')) {
			$('#entries .inner .archive').fadeOut();
			
			$('#entries .inner').animate({
				height: archiveHeight
		  	}, 1000, function() {
			    $('#switch').removeClass('open');
		  });
		}
		else {
			$('#switch').addClass('open');
			$('#entries .inner .archive').fadeIn();
			var newArchiveHeight = $('#entries').height();
			$('#entries .inner').height(newArchiveHeight);
		}

	});
	
	/* entry */
	$('.entry').hover(

		function () {
			$(this).find('.body p').fadeIn(250);
		  }, 
	  function () {
		    $(this).find('.body p').fadeOut(120);
	  }
	);
	
	/* outgiong links */
	$('.entry.update, .entry.project, #footer .twitter a, .details a').attr("target", "_blank");
	
});
