// ----------------------------------------------------------------------------
//                                   C O D E . J S
// ----------------------------------------------------------------------------
// (c) 1996-2001 msedv - DI Markus Schwaiger EDV-Dienstleistungen
//               Phone: +43-1-5449532-0; Fax: +43-1-5449532-14
//               Internet: http://www.msedv.at; Mail: ms@msedv.at
//               SnailMail: Schoenbrunnerstr. 50, A-1050 Wien/Vienna, Austria
// ----------------------------------------------------------------------------
//  History:
// ----------------------------------------------------------------------------
//  ToDo:
// ----------------------------------------------------------------------------

var image001, image002, image003, image004, image005;
var image006, image007, image008, image008, image010;

function init (area)
{
	if (area == "index")
	{
		thisPath = "./images/";
	} else {
		thisPath = "../images/";
	}
	
	image001 = new Image (); 
	image001.src = thisPath + "mout.gif";
	image002 = new Image (); 
	image002.src = thisPath + "eout.gif";
	image003 = new Image (); 
	image003.src = thisPath + "dout.gif";
	image004 = new Image (); 
	image004.src = thisPath + "iout.gif";
	image005 = new Image (); 
	image005.src = thisPath + "aout.gif";
	
	image006 = new Image (); 
	image006.src = thisPath + "mover.gif";
	image007 = new Image (); 
	image007.src = thisPath + "eover.gif";
	image008 = new Image (); 
	image008.src = thisPath + "dover.gif";
	image009 = new Image (); 
	image009.src = thisPath + "iover.gif";
	image010 = new Image (); 
	image010.src = thisPath + "aover.gif";
}

function changeImage (imageName, thisImage)
{
	if (document.images) { document[imageName].src = thisImage.src; }
}
