<!--
/* 
Az alábbi JavaScript forráskód kizárólagos jogtulajdonosa a 
WEBFocus Stúdió E.C.(WFS). A forrásfájl egésze
és részei is a szerzoi jog és a nemzetközi jogi egyezmények,
valamint egyéb, a szellemi tulajdonra vonatkozó jogszabályok
és nemzetközi egyezmények védelme alatt állnak.
A WFS ezúton megadja a forráskód használati jogát a következo 
feltételekkel az Európai Ingatlan Centrum Kft. (EIC), mint felhasználó 
számára. A forráskód felhasználható a EIC
honlapjának a WFS által kivitelezett szekcióiban.
A kód megváltoztatása, lemásolása, publikálása és egyéb 
felhasználása a WFS beleegyezése nélkül nem engedélyezett.

All rights reserved for the following JavaScript source code by 
WEBFocus Stúdió E.C. (WFS).
The source file and its parts are under the proof of license and 
international rights agreements as well as other legislations for
intellectual property. WFS hereby gives the right to use the 
source code under the following conditions: Európai Ingatlan Centrum Ltd.
as user can use the source code in the sections of the user's 
website made by WFS. Any changes, copies ,publications 
and other uses of the code without the permition of WFS is forbidden.
*/
function Menu_Elem(MenuKep,AnimalodoKep,AnimalodoKepOverFajl)
{
	this.SetMenuElemKep=Menu_Elem_SetMenuElemKep
	this.SetAnimalodoKep=Menu_Elem_SetAnimalodoKep
	this.SetAnimalodoKepOverFajl=Menu_Elem_SetAnimalodoKepOverFajl
	this.MouseOver=Menu_Elem_MouseOver
	this.MouseOut=Menu_Elem_MouseOut
}

function Menu_Elem_SetMenuElemKep(KepNev)
{
	this.MenuElemKep=GetObjektum(KepNev)
	this.MenuElemKep.MenuElemObjektum=this
	this.MenuElemKep.onmouseover=new Function("this.MenuElemObjektum.MouseOver()")
	this.MenuElemKep.onmouseout=new Function("this.MenuElemObjektum.MouseOut()")
}

function Menu_Elem_SetAnimalodoKep(KepNev)
{
	this.AnimalodoKep=GetObjektum(KepNev)
	this.AnimalodoKep.EredetiKepUrl=this.AnimalodoKep.src
}

function Menu_Elem_SetAnimalodoKepOverFajl(Url)
{
	this.AnimalodoKep.MouseOverKepUrl=Url
	this.AnimalodoKep.PreloadedKep=new Image()
	this.AnimalodoKep.PreloadedKep.src=Url
}

function Menu_Elem_MouseOver()
{
	this.AnimalodoKep.src=this.AnimalodoKep.MouseOverKepUrl
}

function Menu_Elem_MouseOut()
{
	this.AnimalodoKep.src=this.AnimalodoKep.EredetiKepUrl
}
// -->