$(document).ready(function(){
	
	$(".socialTip").simpletooltip();
	
	setTimeout ( showLatest, 2000 );
	
	$("#latest_post").click(function(){
	
		clicky.goal( '465' );
	
	});
		
});

function showLatest()
{
	$("#latest_post").animate({height: "20px", opacity:"1"}, 700);
}