$(document).ready(function(){
function toHide(){
$("#sidebar .title").removeClass("current");
$("#piucliccati,#commenti,#tags").hide();
}

toHide();

$("#menu .mhover").hide();
$("#sidebar .title").removeClass("current");
$("#sidebar #title-1").addClass("current");

$("#piucliccati").show();
$("#menu li.mh").mousemove(function(){
$(this).children(".mhover").show();
}).mouseout(function(){
$(this).children(".mhover").hide();
});
$("#sidebar #title-1").click(function(){
toHide();
$("#piucliccati").show("slow");
$(this).addClass("current");
});
$("#sidebar #title-2").click(function(){
toHide();
$("#commenti").show("slow");;
$(this).addClass("current");
});
$("#sidebar #title-3").click(function(){
toHide();
$("#tags").show("slow");
$(this).addClass("current");
});
$(".post p:first").css("padding",0);
});