$(function(){
    // disable contextmenu
    $(this).bind("contextmenu", function(e) {
        e.preventDefault();
    });
// clicked portfolio link.. set portfolio thumbs...
    $(".portfoliolink").click(function(e) {
        e.preventDefault();
        if ( $("#tekstContainer").height() > 0 || contentstate == 'open' ) {
            $("#tekstContainer").animate({
                height:0
            }, function () {
                $("#tekstContainer").addClass('hidden');
                $("#tekstContainer").removeAttr('style');

                galleryHandler.setAlbumCovers();
            });
        } else {
            galleryHandler.setAlbumCovers();
        }
        
        
        // hunt click on album
    });

    $("li.thumb em").live('click', function ( e ) {
        // get sibbling gallery
        id = $(this).attr('gallery');
        if ( id ) {
            document.location=settings.base_address + 'portfolio/' + id;
        }
    });

    $(".thumbnail-img").live('click', function ( e ) {
        e.preventDefault();
        // get album id
        id = $(this).attr('gallery');
        if ( id ) {
            document.location=settings.base_address + 'portfolio/' + id;
        }
    });
});
