$(document).ready(function() {
    /* prettyPhoto initialisieren */
    $("a[rel^='prettyPhoto']").prettyPhoto({
        theme: 'light_rounded',
        overlay_gallery: false,
        show_title: false
    });

    /* Versteckte Elemente initialisieren */
    $(".hiddencontent").hide();
    $(".hiddentrigger").click(function() {
        $(this).parent().find('.hidecontent').slideToggle(500);
        $(this).parent().find('.hiddencontent').slideToggle(500);
        return false;
    });
});

function wuerfel_hide(id, Zaehler) {
    $('#'+id).animate({
        top: '50px'
    }, 500);
}

function wuerfel_show(id) {
    $('#'+id).stop().animate({
        top: '0px'
    }, 500);
}
