/* 
 * Get albums for menu ( homepage )
 */


$(function () {
    galleryHandler.setAlbumCovers();

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