<!--
var g_OverArray = new Object;
g_OverArray['Home']             = '../images/1-Home-3.gif';
g_OverArray['CompanyProfile']   = '../images/3-company-profile-2.gif';
g_OverArray['CurrentProjects']  = '../images/3-current-projects-2.gif';
g_OverArray['News']             = '../images/3-news-2.gif';
g_OverArray['Skills']           = '../images/1-Skills-3.gif';
g_OverArray['Technologies']      = '../images/3-Technologies-2.gif';
g_OverArray['Downloads']        = '../images/3-Downloads-2.gif';
g_OverArray['Portfolio']        = '../images/1-Portfolio-3.gif';
g_OverArray['Games']            = '../images/3-Games-2.gif';
g_OverArray['OtherProjects']    = '../images/3-Other-projects-2.gif';
g_OverArray['Contacts']         = '../images/1-Contacts-3.gif';
g_OverArray['Vacancies']        = '../images/1-Vacancies-3.gif';

var g_OutArray = new Object;
g_OutArray['Home']              = '../images/1-Home-1.gif';
g_OutArray['CompanyProfile']    = '../images/3-company-profile-1.gif';
g_OutArray['CurrentProjects']   = '../images/3-current-projects-1.gif';
g_OutArray['News']              = '../images/3-news-1.gif';
g_OutArray['Skills']            = '../images/1-Skills-1.gif';
g_OutArray['Technologies']       = '../images/3-Technologies-1.gif';
g_OutArray['Downloads']         = '../images/3-Downloads-1.gif';
g_OutArray['Portfolio']         = '../images/1-Portfolio-1.gif';
g_OutArray['Games']             = '../images/3-Games-1.gif';
g_OutArray['OtherProjects']     = '../images/3-Other-projects-1.gif';
g_OutArray['Contacts']          = '../images/1-Contacts-1.gif';
g_OutArray['Vacancies']         = '../images/1-Vacancies-1.gif';;

var g_DownArray = new Object;
g_DownArray['Home'] = '../images/1-Home-2.gif';
g_DownArray['Skills'] = '../images/1-Skills-2.gif';
g_DownArray['Portfolio'] = '../images/1-Portfolio-2.gif';
g_DownArray['Contacts'] = '../images/1-Contacts-2.gif';
g_DownArray['Vacancies'] = '../images/1-Vacancies-2.gif';


function over(img) { document.images[img].src = g_OverArray[img]; }
function out(img) { document.images[img].src = g_OutArray[img]; }

function InitPopupImages()
{
    document.images['CompanyProfile'].src    = g_OutArray['CompanyProfile'];
    document.images['CurrentProjects'].src   = g_OutArray['CurrentProjects'];
    document.images['News'].src              = g_OutArray['News'];
    document.images['Technologies'].src       = g_OutArray['Technologies'];
    document.images['Downloads'].src         = g_OutArray['Downloads'];
    document.images['Games'].src             = g_OutArray['Games'];
    document.images['OtherProjects'].src     = g_OutArray['OtherProjects'];    
}
-->