$(function()
{
	$().localScroll();
	$('#header h1').css('text-indent', -10000);
	
	var pillarLinks = $('#pillars a');
	pillarLinks.each(function(index)
	{
		var $this = $(this);
		var height = $this.height();
		$this.hover(function()
		{
			$this.animate({ height: height - 5 }, 'fast');
		}, function()
		{
			$this.animate({ height: height }, 'fast');
		});
	});
	
});
