function showTwitter()
{
	var height = $(".twtr-tweets").height();
	
	var h = height < 88 ? 88 : height;
	
	$(".twitcontent").animate({height: h + 20 + 'px'}, 2000);
//height(h + 20);
}

function hideTwitter()
{
	if($(".twitcontent").is(':animated'))
	{
		$(".twitcontent").stop();
	}
	
	$(".twitcontent").height(88);
}

$(document).ready(
	function()
	{
		$(".twitcontent").bind('mouseenter',function(){showTwitter();});
		$(".twitcontent").bind('mouseleave',function(){hideTwitter();});		
	}
);
