$(document).ready(function() {
	$('#no-script').remove();
	$('div#logo').click(function() {
		window.location.href = '/'
	});
    var rightHeight = $('div#rightColumn').height();
    if (rightHeight < 700) {
    	var rightHeightDiff = 700 - rightHeight;
    	$('div#rightColumn').animate({ height: '700px'}, function() {
    		$('div#innerpage-anno').css('top', rightHeightDiff + 'px');
    	});
    }
});

