function balanceHeight() {
	if($('#right').height() > $('#left').height()) {
		$('#left').css({ height: $('#right').height()+'px' })
	}
}

$(document).ready(function() {
	$('#menu ul li a').mouseover(function() {
		$(this).animate({ backgroundPosition: '50% 0' }, { duration: 100, queue: false });
	}).mouseout(function() {
		$(this).animate({ backgroundPosition: '50% -13px' }, { duration: 100, queue: false });
	});

	$('#content .content-item').mouseover(function() {
		$('#content .content-item').removeClass('active-heading');
		$(this).addClass('active-heading');
		$(this).mouseout(function() {
			$(this).removeClass('active-heading');
		})
	});

	balanceHeight();

	$('abbr, .has-tip').tipTip({
		defaultPosition: 'top',
		maxWidth: '300px'
	});
})
