function hide_photos(fade_out){
    var show_more_button = false;
    var total = 0;
    var hide_after = 3;
    $("#photo-gallery a").each(function(i){
        if (i > hide_after){
            $(this).css('display', 'none');
            show_more_button = true;
        }
        total = i;
    });
    if (show_more_button && hide_after != (total-1)){
        $("#photo-gallery").after("<p><a id='view-more-photo' href='javascript:void(0);' class='button float-right'>"+label_more_photos+"</a></p>");
    }
}

function hide_text(fade_out){
    var paragrafs = $('.substr_text p').size();
    if (paragrafs > 1){
        if (fade_out == 0){
            $(".substr_text :not(p:first)").css('display', 'none');
        } else {
            $(".substr_text :not(p:first)").slideUp();
        }
        $(".substr_text p:last").after("<p><a id='view-more-text' href='javascript:void(0);' class='button float-right'>"+label_more_text+"</a></p>");
    }
}


$(function() {
    $("a[rel*='clearbox[item]']").attr('rel', 'clearboxd[gallery=]')

    hide_photos(0);
    hide_text(0);

    $("#view-more-photo").live('click', function(){
        $(this).parent().remove();
        $("#photo-gallery a").show();
        $("#photo-gallery").after("<p><a id='view-less-photo' href='javascript:void(0);' class='button float-right'>"+label_less_photos+"</a></p>");
    });

    $("#view-less-photo").live('click', function(){
        $(this).parent().remove();
        hide_photos(1);
    });

    $("#view-more-text").live('click', function(){
        $(this).parent().remove();
        $(".substr_text p").slideDown();
        $(".substr_text").after("<p><a id='view-less-text' href='javascript:void(0);' class='button float-right'>"+label_less_text+"</a></p>");
    });

    $("#view-less-text").live('click', function(){
        $(this).parent().remove();
        hide_text(1);
    });

    $(".colorize_rows tr:even").addClass("yellow_bg");
})