(function($) {
	$(function() {
		$('#nav>li>a').hover(function() {
			$(this).stop(1);
			$(this).animate( {
				'background-position' : '0px 0'
			});
		}, function() {
			$(this).stop(1);
			$(this).animate( {
				'background-position' : '-140px 0'
			});
		})

		$('.boxgrid').each(function() {
			var $caption = $(this).find('span.boxcaption');
			var pheight = $(this).height();
			$caption.css('top', pheight - 30);

			$(this).hover(function() {
				$caption.stop(1);
				$caption.animate( {
					top : pheight - $caption.height() - 15
				});
			}, function() {
				$caption.stop(1);
				$caption.animate( {
					top : pheight  - 30
				})
			})
		});
	});
})(jQuery);

