$(document).ready(function() 
{
	//Fade in and out tweets in the main bar.
	$('p.tweet').cycle({ fx: 'fade' });
	
	// Animate the logo on hover
	$('#logo a')
	.css( {backgroundPosition: "0 -10px"} )
	.mouseover(function()
	{
		$(this).stop().animate(
		{backgroundPosition:"(0 -4px)"}, 
		{duration:150})
	})
	.mouseout(function()
	{
		$(this).stop().animate(
		{backgroundPosition:"(0 -10px)"}, 
		{duration:150})
	})
	
	// Append decorative line
	$("p.miniheader").append('<span class="border"></span>');
	
	// Hide meta data 
	//$('.postnew_metaviewer').hide();
	
	// Show meta data on hover on title
	//$('#top_meta_wrapper').hover(function()
	//{
	//	$('.postnew_metaviewer').slideDown();
	//},
	//function()
	//{
	//	$('.postnew_metaviewer').slideUp();
	//});
	
	$('span.author .author_link').hide();
	
	$('span.author').hover(function()
	{
		$(this).children('.author_link').fadeIn('fast');
	},
	function()
	{
		$(this).children('.author_link').fadeOut('fast');
	});
 });