$(document).ready(function () {
    var effect = ["blindX", "blindY", "blindZ", "cover", "curtainX", "curtainY", "fade", "fadeZoom", "growX", "growY", "none", "scrollUp", "scrollDown", "scrollLeft", "scrollRight", "scrollHorz", "scrollVert", "shuffle", "slideX", "slideY", "toss", "turnUp", "turnDown", "turnLeft", "turnRight", "uncover", "wipe", "zoom"];
    var numRand = Math.floor(Math.random() * effect.length);
    $(".image_cycle").cycle({
        timeout: 5000,
        fx: effect[numRand - 1],
        speed: 900,
        before: onBefore,
        after: onAfter
    });
    $(".image_cycle").show();

    $(".link_more").click(function () {
        $(this).parent().parent().slideUp("slow");
        $(this).parent().parent().parent().children("div.hiddenTbl").slideDown("slow");
        return false;
    });

    $(".link_back").click(function () {
        $(this).parent().parent().slideUp("slow");
        $(this).parent().parent().parent().children("div.visibleTbl").slideDown("slow");
        return false;
    });

});

function onBefore() {
    $(this).children("div[@class=image_title]").fadeOut("slow");
};
function onAfter() {
    $(this).children("div[@class=image_title]").fadeIn("slow");

};


function links_loaded() {
    $("#container_links").balanceChildrenHeight();
};

