$(function() {
	$('#blogtitle').mouseover(function(){
		$('div #anim_logo').animate( { height: 83 }, 1000 );
		return false;
	})
	$('#blogtitle').mouseout(function(){
		$('div #anim_logo').animate( { height: 0 }, 1000 );
		return false;
	})
});


