var MENU = new Object();

MENU["images"] = new Object();
MENU["images"]["simple"] = new Object();

MENU["images"]["simple"]["aboutCompany"] = new Image();
MENU["images"]["simple"]["aboutCompany"]["src"] = "/images/www/menu-aboutCompany-simple.jpg";

MENU["images"]["simple"]["yslygi"] = new Image();
MENU["images"]["simple"]["yslygi"]["src"] = "/images/www/menu-yslygi-simple.jpg";

MENU["images"]["simple"]["order"] = new Image();
MENU["images"]["simple"]["order"]["src"] = "/images/www/menu-order-simple.jpg";

MENU["images"]["simple"]["works"] = new Image();
MENU["images"]["simple"]["works"]["src"] = "/images/www/menu-works-simple.jpg";

MENU["images"]["simple"]["contacts"] = new Image();
MENU["images"]["simple"]["contacts"]["src"] = "/images/www/menu-contacts-simple.jpg";

MENU["images"]["over"] = new Object();

MENU["images"]["over"]["aboutCompany"] = new Image();
MENU["images"]["over"]["aboutCompany"]["src"] = "/images/www/menu-aboutCompany-over.jpg";

MENU["images"]["over"]["yslygi"] = new Image();
MENU["images"]["over"]["yslygi"]["src"] = "/images/www/menu-yslygi-over.jpg";

MENU["images"]["over"]["order"] = new Image();
MENU["images"]["over"]["order"]["src"] = "/images/www/menu-order-over.jpg";

MENU["images"]["over"]["works"] = new Image();
MENU["images"]["over"]["works"]["src"] = "/images/www/menu-works-over.jpg";

MENU["images"]["over"]["contacts"] = new Image();
MENU["images"]["over"]["contacts"]["src"] = "/images/www/menu-contacts-over.jpg";

MENU.onOver = function(obj, what)
{
	obj.src = null;
	obj.src = MENU["images"]["over"][what]["src"];
}

MENU.onOut = function(obj, what)
{
	obj.src = null;
	obj.src = MENU["images"]["simple"][what]["src"];
}
