$(document).ready(function() {
	$('ul.year > li:nth-child(odd)').addClass('odd');
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
		&& location.hostname == this.hostname) {
		  var $target = $(this.hash);
		  $target = $target.length && $target
		  || $('[name=' + this.hash.slice(1) +']');
		  if ($target.length) {
			var targetOffset = $target.offset().top;
			$('html,body')
			.animate({scrollTop: targetOffset}, 1200);
		   return false;
		  }
		}
	  });
	$('.lightbox').lightbox({fitToScreen: true});
	$('footer div div:last-child, footer li:last-child').addClass('last');
	//Cufon.replace('#content h2, #content h3, h4');
});
