var AnimatieObject = new Class(
{
    overlay : null,
    text : null,
    anim : null,

    initialize : function(anim)
    {
        this.anim = anim;
    },

    hide : function()
    {
        $(this.anim).hide();
        $(this.text).removeClass('blok_bottom_selected');
        $(this.overlay).hide();
    },

    show : function()
    {
        $(this.anim).show();
        $(this.text).addClass('blok_bottom_selected');
        $(this.overlay).show();
    }
});
