$(document).ready(function()
{
	// Pages links
	$("#pages").slideDown("slow");
	$("#pages li:last-child").css({backgroundPosition:"-40px"})
	// sidebar height
	var sideAltura = $("#sidebar").height();
	var altura = $("#content").height();
	if ( altura > sideAltura ) {
		$("#sidebar").height(altura + 10);
	}
	else
	{
		$("#content").height(sideAltura + 65);
	}
});