$(document).ready(function() {
	/*
	$('.sitemenu ul li:not(.current)').hover(function() {
		$(this).addClass("current");
	}, function() {
		$(this).removeClass("current");
	});
	*/
	
	// expands content height if feature is higher than content, so feature does not overlap footer.
	if( $('#content').height() < ($('.feature').height()+20) ){
		$('#content').css('min-height', ($('.feature').height()+20)+'px');
	}
});
