//+----------------------------------------------------------------------------+
//| Copyright 2005, Dipl. eng. Andri Ivin.                                     |
//| Unauthorized copying of this script or any part of this script prohibited. |
//| Contact: andri.ivin@mail.ee                                                |
//+----------------------------------------------------------------------------+

//Preload Images ----------------------------------------
function preLoadImages() {
	var doc = document;
	doc.imageArray = new Array();
	doc.imageArray[0] = new Image;
	doc.imageArray[0].src = "buttons/loginbutton.gif";
	doc.imageArray[1] = new Image;
	doc.imageArray[1].src = "buttons/loginbuttonactiv.gif";
	doc.imageArray[2] = new Image;
	doc.imageArray[2].src = "buttons/loginbuttoninactiv.gif";
	doc.imageArray[3] = new Image;
	doc.imageArray[3].src = "buttons/logoutbutton.gif";
	doc.imageArray[4] = new Image;
	doc.imageArray[4].src = "buttons/logoutbuttonactiv.gif";
	doc.imageArray[5] = new Image;
	doc.imageArray[5].src = "buttons/logoutbuttoninactiv.gif";
	doc.imageArray[6] = new Image;
	doc.imageArray[6].src = "buttons/closebutton.gif";
	doc.imageArray[7] = new Image;
	doc.imageArray[7].src = "buttons/closebuttonactiv.gif";
}
