var currentlyselectedmenu;
var CurrentLin;
var sitePath;
var pHome =  new Image();
var pMyAcc =  new Image();
var pComm =  new Image();
var pShop =  new Image();
var pMakeOwn = new Image();

var homenormal;
var myaccnormal;
var commnormal;
var shopnormal;
var makeown;


//SOS images
var pSOSHome =  new Image();
var pAboutSOS =  new Image();
var pCardsnCalendars =  new Image();
var pSpreadtheWord =  new Image();
var pSOSAgent = new Image();


var soshomenormal;
var aboutsosnormal;
var cardsncalendarsnormal;
var spreadthewordnormal;
var sosagent;

function setPathOfSite(path)
{
    sitePath = path;
    pHome.src = sitePath +  "home_rollover.gif";
    pMakeOwn.src=sitePath + "own_rollover.gif";
    pMyAcc.src = sitePath + "my_account_rollover.gif";
        
    pComm.src = sitePath +  "community_rollover.gif";    
    pShop.src = sitePath +  "gift_shop_rollover.gif";
    
    homenormal = sitePath + "home_normal.gif";
    myaccnormal = sitePath +"my_account_normal.gif";
    commnormal = sitePath + "community_normal.gif";
    shopnormal = sitePath + "gift_shop_normal.gif";
    makeown = sitePath +    "ownnormal.gif";
        
}


function setPathOfSOS(path)
{
    sitePath = path;
    
    pSOSHome.src = sitePath +  "SOS/images/home_rollover.gif";
    pAboutSOS.src = sitePath + "SOS/images/aboutsos_over.gif";
    pCardsnCalendars.src = sitePath + "SOS/images/cards_over.gif";        
    pSpreadtheWord.src = sitePath +  "SOS/images/spread_over.gif";    
    pSOSAgent.src = sitePath +  "SOS/images/become_over.gif";
    
    soshomenormal = sitePath + "SOS/images/home_normal.gif";
    aboutsosnormal = sitePath +"SOS/images/aboutsos_off.gif";
    cardsncalendarsnormal = sitePath + "SOS/images/cards_off.gif";
    spreadthewordnormal = sitePath + "SOS/images/spread_off.gif";
    sosagent = sitePath +    "SOS/images/become_off.gif";
    
}
	


function HoverImage(img, section)
{
    if(section==currentlyselectedmenu)
        return;
    else if(section=='home')
        img.src = pHome.src;
    else if(section=='myaccount')
        img.src = pMyAcc.src;
    else if(section=='comm')
        img.src = pComm.src;
    else if(section=='shop')
        img.src = pShop.src;
    else if(section=='yourown')
        img.src=pMakeOwn.src;
        
}

function HoverSOSImage(img, section)
{
    if(section==currentlyselectedmenu)
        return;
    else if(section=='soshome')
        img.src = pSOSHome.src;
    else if(section=='aboutsos')
        img.src = pAboutSOS.src;
    else if(section=='cardsncalendars')
        img.src = pCardsnCalendars.src;
    else if(section=='spreadtheword')
        img.src = pSpreadtheWord.src;
    else if(section=='sosagent')
        img.src=pSOSAgent.src;
        
}


function OutImage(img, section)
{
    if(section==currentlyselectedmenu)
        return;
    else if(section=='home')
        img.src = homenormal;
    else if(section=='myaccount')
        img.src = myaccnormal;
    else if(section=='comm')
        img.src = commnormal;
    else if(section=='shop')
        img.src = shopnormal;
    else if(section=='yourown')
        img.src=makeown;
        
}

function OutSOSImage(img, section)
{
    if(section==currentlyselectedmenu)
        return;
    else if(section=='soshome')
        img.src = soshomenormal;
    else if(section=='aboutsos')
        img.src = aboutsosnormal;
    else if(section=='cardsncalendars')
        img.src = cardsncalendarsnormal;
    else if(section=='spreadtheword')
        img.src = spreadthewordnormal;
    else if(section=='sosagent')
        img.src=sosagent;
        
}

function SelectedNav(section)
{

    var img;
    currentlyselectedmenu = section;
    if(section=='home')
    {
        img = document.getElementById('imgHome');
        img.src = sitePath + 'home_active.gif';
    }
    else if(section=='shop')
    {
        img = document.getElementById('imgShop');
        img.src = sitePath + 'gift_shop_active.gif';
    }
    else if(section=='myaccount')
    {
        img = document.getElementById('imgMyAcc');
        img.src = sitePath + 'my_account_active.gif';
    }
    else if(section=='comm')
    {
        img = document.getElementById('imgComm');
        img.src = sitePath + 'community_active.gif';
    }      
    else if(section=="yourown")
    {
        img = document.getElementById('imgYourOwn');
        img.src= sitePath + 'own_active.gif';
    }
    img.onmouseover = 'return false';
    img.onmouseout = 'return false';
}



function SelectedSOSNav(section)
{
    var img;
    currentlyselectedmenu = section;    
    if(section=='soshome')
    {
        img = document.getElementById('imgSOSHome');
        img.src = sitePath + 'SOS/images/soshome_on.gif';        
    }
    else if(section=='aboutsos')
    {
        img = document.getElementById('imgAbout');
        img.src = sitePath + 'SOS/images/aboutsos_on.gif';
    }
    else if(section=='cardsncalendars')
    {
        img = document.getElementById('imgCards');
        img.src = sitePath + 'SOS/images/cards_on.gif';
    }
    else if(section=='spreadtheword')
    {
        img = document.getElementById('imgSpread');
        img.src = sitePath + 'SOS/images/spread_on.gif';
    }      
    else if(section=="sosagent")
    {
        img = document.getElementById('imgAgent');
        img.src= sitePath + 'SOS/images/become_on.gif';        
    }
    
    img.onmouseover = 'return false';
    img.onmouseout = 'return false';
}
