$(function() {
	$('.column').each(function() {
		$('h3:first-child, h2:first-child, blockquote:first-child', this).addClass('first');
		$('div.large-quote:first-child', this).addClass('top-quote');
		$('ol').each(function() {
			var i = 1;
			$('li', this).each(function() {
				$(this).addClass('item-' + i);
				i = i + 1;
			});
		});
		$('#search input').inputHint();
	});
});