///////////////////////////////////////////////////////////////////////////////////////////
// Scripts for hiding tooltip and re-enabling it at LightBox call
///////////////////////////////////////////////////////////////////////////////////////////
    function hide_toolTips()
    {
        for(i=0 ; i < document.links.length ; i++)
        {
            document.links[i].setAttribute('title', '');
        }
    }

///////////////////////////////////////////////////////////////////////////////////////////    
    function show_toolTip(title)
    {
        for(i=0 ; i < document.links.length ; i++)
        {
            document.links[i].setAttribute('title', title);
        }
    }

///////////////////////////////////////////////////////////////////////////////////////////
// AJAX
///////////////////////////////////////////////////////////////////////////////////////////

    function changePage(artist, page, gal_div_id)
    {
        div_to_change = document.getElementById(gal_div_id);
        
        updater = new Ajax.Updater (
            div_to_change,
            '/portfolios/pages.php',
            {
                method: 'post',
                parameters: {action:'goToPage', artist:artist, start_page:page},
                evalScripts: true
            }
            
        );
    }
    
///////////////////////////////////////////////////////////////////////////////////////////
