﻿// File JScript

function rollOverChangeImg(linkName,callId,ext)
{
    document.getElementById(callId).src = "http://www.giovannaventura.com/images/buttons/" + linkName + "_hlight." + ext;
    //document.getElementById(callId).src = "http://localhost:1476/Giovanna%20Ventura%204/images/buttons/" + linkName + "_hlight." + ext;
    //document.getElementById(callId).src = "http://85.18.228.124:8084/images/buttons/" + linkName + "_hlight." + ext;
}
function rollOutChangeImg(linkName,callId,ext)
{
    document.getElementById(callId).src = "http://www.giovannaventura.com/images/buttons/" + linkName + "." + ext;
    //document.getElementById(callId).src = "http://localhost:1476/Giovanna%20Ventura%204/images/buttons/" + linkName + "." + ext;
    //document.getElementById(callId).src = "http://85.18.228.124:8084/images/buttons/" + linkName + "." + ext;
}

function hideButton(id1, id2)
{
    document.getElementById(id1).style.visibility = "hidden";
    document.getElementById(id2).style.visibility = "hidden";
}

function goToUrl(page)
{
    document.getElementById('mainFrame').src = page;
}

function collapsePanels(behavior)
{
    var behaviors = ["bioCollapse","logCollapse","newsCollapse", "mwCollapse", "calCollapse", "commAtlCollapse","commCorCollapse"];
    
    for(var i=0; i<behaviors.length; i++)
    {
        if(behaviors[i] != behavior)
        {
            if($find(behaviors[i]) != null)
            {
                if(!$find(behaviors[i]).get_Collapsed())
                {
                    $find(behaviors[i])._doClose();
                }
            }
        }
    }
}

function scrollLoad()
{
    $("#sPane").jScrollPane();
}


