﻿// JScript File

img_home = new Image();
img_home.src = "../images/menu_home.gif";
img_home_on = new Image();
img_home_on.src = "../images/menu_home_on.gif";

img_about_us = new Image();
img_about_us.src = "../images/menu_about_us.gif";
img_about_us_on = new Image();
img_about_us_on.src = "../images/menu_about_us_on.gif";

img_our_clients = new Image();
img_our_clients.src = "../images/menu_our_clients.gif";
img_our_clients_on = new Image();
img_our_clients_on.src = "../images/menu_our_clients_on.gif";

img_contact_us = new Image();
img_contact_us.src = "../images/menu_contact_us.gif";
img_contact_us_on = new Image();
img_contact_us_on.src = "../images/menu_contact_us_on.gif";

img_careers = new Image();
img_careers.src = "../images/menu_careers.gif";
img_careers_on = new Image();
img_careers_on.src = "../images/menu_careers_on.gif";

img_client_area = new Image();
img_client_area.src = "../images/menu_client_area.gif";
img_client_area_on = new Image();
img_client_area_on.src = "../images/menu_client_area_on.gif";

img_graduates = new Image();
img_graduates.src = "../images/menu_graduates.gif";
img_graduates_on = new Image();
img_graduates_on.src = "../images/menu_graduates_on.gif";

img_submit_cv = new Image();
img_submit_cv.src = "../images/menu_submit_cv.gif";
img_submit_cv_on = new Image();
img_submit_cv_on.src = "../images/menu_submit_cv_on.gif";

img_vacancies = new Image();
img_vacancies.src = "../images/menu_vacancies.gif";
img_vacancies_on = new Image();
img_vacancies_on.src = "../images/menu_vacancies_on.gif";

img_job_search = new Image();
img_job_search.src = "../images/menu_job_search.gif";
img_job_search_on = new Image();
img_job_search_on.src = "../images/menu_job_search_on.gif";

img_links_and_forms = new Image();
img_links_and_forms.src = "../images/menu_links_and_forms.gif";
img_links_and_forms_on = new Image();
img_links_and_forms_on.src = "../images/menu_links_and_forms_on.gif";

img_register = new Image();
img_register.src = "../images/menu_register.gif";
img_register_on = new Image();
img_register_on.src = "../images/menu_register_on.gif";

function swap()
{
    if (document.images)
    {
        for (var x=0; x<swap.arguments.length; x+=2)
        {
            document.getElementById(swap.arguments[x]).src = eval(swap.arguments[x+1] + ".src");
            //document[swap.arguments[x]].src = eval(swap.arguments[x+1] + ".src");
        }
    }
}
