$(function() {
	$('#main-nav ul > li').hover(function() {
		$(this).addClass('hover');
		$('a:first', this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
		$('a:first', this).removeClass('hover');
	});
	$('#search-term').example(function() {
		  return $(this).attr('title');
	});
	fixFooter();
	$(window).resize(function() {
		fixFooter();
	});
});

function fixFooter() {
	var wh = $(window).height();
	var bh = $('body').height();
	if (wh > bh) {
		$('#wrapper').css('marginBottom', wh - bh);
	}
}
