Cufon.replace('h1');
Cufon.replace('h3',{fontSize:'25px'});
Cufon.replace('h2');
Cufon.replace('.menu a',{fontSize:'20px'});
Cufon.replace('h5',{fontSize:'25px'});
$(document).ready(function () {
    $('div.comments-count').each(function (i) {
        $(this).find('input.hdn').eq(0).val($(this).parent().next('div').height());
        $(this).click(function () {
            var spn = $(this).find('span').eq(0);
            if ($(spn).hasClass('active')) {
                $(spn).removeClass('active');
                $(this).css("marginTop","0px");
                $(this).parent().next('div').css("padding","0px 10px");
                $(this).parent().next('div').animate({height:"0px"},250);
            } else {
                $(spn).addClass('active');
                $(this).css("marginTop","1px");
                $(this).parent().next('div').css("padding","10px");
                $(this).parent().next('div').animate({height:$(this).find('input.hdn').eq(0).val() + "px"},250);
            }
        });
    });
});
