$(document).ready(function(){
    Galleria.loadTheme('js/galleria/themes/custom/galleria.custom.js');
    $('#galleria').galleria({
        transition: 'fadeslide',
        image_crop: true
    });
    
    $('#googlemaps-show > a').attr('href', '#googlemaps').attr('target', '_self').click(function(){
        $('#googlemaps-embed').show();
        $('#googlemaps-show').hide();
        $('#googlemaps-hide').show();
        return true;
    });
    
    $('#googlemaps-hide > a').click(function(){
        $('#googlemaps-embed').hide(200);
        $('#googlemaps-hide').hide();
        $('#googlemaps-show').show();
        return false;
    });
});

