// top menu rollover javascript (BBBertram/White Horse)
if (document.images)
{
        welcomeon = new Image;
        welcomeon.src = "/dinersus/images/sb/welc_on.gif";
        welcomeoff = new Image;
        welcomeoff.src = "/dinersus/images/sb/welc.gif";
		
		cashon = new Image;
        cashon.src = "/dinersus/images/sb/cash_on.gif";
        cashoff = new Image;
        cashoff.src = "/dinersus/images/sb/cash.gif";
		
		travelon = new Image;
        travelon.src = "/dinersus/images/sb/trav_on.gif";
        traveloff = new Image;
        traveloff.src = "/dinersus/images/sb/trav.gif";
		
		personalon = new Image;
        personalon.src = "/dinersus/images/sb/pers_on.gif";
        personaloff = new Image;
        personaloff.src = "/dinersus/images/sb/pers.gif";
		
		electiveon = new Image;
        electiveon.src = "/dinersus/images/sb/elec_on.gif";
        electiveoff = new Image;
        electiveoff.src = "/dinersus/images/sb/elec.gif";
		
		privacyon = new Image;
        privacyon.src = "/dinersus/images/sb/priv_on.gif";
        privacyoff = new Image;
        privacyoff.src = "/dinersus/images/sb/priv.gif";
		
		phoneon = new Image;
        phoneon.src = "/dinersus/images/sb/phon_on.gif";
        phoneoff = new Image;
        phoneoff.src = "/dinersus/images/sb/phon.gif";

        
      }
function img_act(imgName)
{
    if (document.images)
    {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
    }
}

function img_inact(imgName)
{
    if (document.images)
    {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
    }
}

function message (text)    
{
    if (document.images)
    {
        window.status = text;
    }
}

function remove ()    
{
    if (document.images)
    {
    window.status = "Membership Sourcebook";
    }
}