$(document).ready(function(){
	
$('#blog').hoverIntent(function(){
	$(this).animate({
	    height: '55%'
	}, 200);
	$(this).css({ "cursor": "pointer" });
	$('div.post_previews', $(this)).animate({
	    height: 400
	}, 200);
},function(){
	$(this).animate({
	    height: 116
	}, 200);		
	$(this).css({ "cursor": "default" });		
	$('div.post_previews', $(this)).animate({
	    height: 80
	}, 200);		
});

$('#tweets').hoverIntent(function(){
	$(this).animate({
	    height: '55%'
	}, 200);
	$(this).css({ "cursor": "pointer" });
	$('div.post_previews', $(this)).animate({
	    height: 400
	}, 200);
},function(){
	$(this).animate({
	    height: 116
	}, 200);		
	$(this).css({ "cursor": "default" });		
	$('div.post_previews', $(this)).animate({
	    height: 80
	}, 200);		
});

});
