var contacts = {
    'mark-fitzmartin' : ['mark@arfco.tv', '/img/contacts/Mark-Fitzmartin3.gif'],
    'alex-fernbach' : ['alex@arfco.tv', '/img/contacts/Alex-Fernbach3.gif'],
    'general' : ['info@arfco.tv', '/img/contacts/general-inquiries2.gif'],
    'mario-malave' : ['mario@arfco.tv', '/img/contacts/Mario-Malave3.gif'],
    'anthony-jacques' : ['anthony@arfco.tv', '/img/contacts/Anthony-Jacques3.gif'],
    'mike-dudeck' : ['mike@arfco.tv', '/img/contacts/Mike-Dudeck3.gif'],
    'mccray-gehret' : ['mccray@arfco.tv', '/img/contacts/McCray-Gehret3.gif'],
    'julio-lopez' : ['julio@arfco.tv', '/img/contacts/Julio-Lopez3.gif'],
    'jill-borman' : ['jill@arfco.tv', '/img/contacts/Jill-Borman3.gif'],
    'arthur-johnson' : ['arthur@arfco.tv', '/img/contacts/Arthur-Johnson3.gif'],
    'beth-galton' : ['beth@arfco.tv', '/img/contacts/Beth-Galton3.gif']
};

function showInfo(ahref)
{
    var ahref = $(ahref);

    var info = $('info');

    for (x in contacts) {
        if (ahref.hasClassName(x)) {
            var bkgd = "transparent url('" + contacts[x][1] + "') top left no-repeat";
            info.setStyle({'background' : bkgd});
            $('info-email').href = 'mailto:' + contacts[x][0];
            break;
        }
    }
    info.show();

    return false;
}

function hideInfo()
{
    $('info').hide();
    return false;
}
