<!--Please do not edit.
nMaxItem = 4;
NameIndex = 0;
DefaultState = 1;

MouseOverState = 2;
MouseDownState = 3;
imgCounter = 0;

ImageList = new Array();

bIsSupportOK = (
	((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) ||
	((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ))
);

function AddImageToImageList(name, Default, MouseOver, MouseDown)
{
	ImageList[imgCounter] = new Array(nMaxItem);
	ImageList[imgCounter][NameIndex] = name;
	ImageList[imgCounter][DefaultState] = new Image();
	ImageList[imgCounter][DefaultState].src = Default;
	if (MouseOver != "") {
		ImageList[imgCounter][MouseOverState] = new Image();
		ImageList[imgCounter][MouseOverState].src = MouseOver;
	}
	if (MouseDown != "") {
		ImageList[imgCounter][MouseDownState] = new Image();
		ImageList[imgCounter][MouseDownState].src = MouseDown;
	}

	imgCounter++;
}

function ReplaceImage(name, state)
{
	for (i = 0; i < imgCounter; i++) {
		if (document.images[ImageList[i][NameIndex]] != null) {
			if ((name == ImageList[i][NameIndex]) && (ImageList[i][state] != null))
				document.images[name].src = ImageList[i][state].src;
		}
	}
}

AddImageToImageList("turkish", "images/mutin11.gif", "images/mutin21.gif", "images/mutin11.gif");
AddImageToImageList("english", "images/mutin12.gif", "images/mutin22.gif", "images/mutin12.gif");
AddImageToImageList("home", "images/home.gif", "images/home_over.gif", "images/home.gif");
AddImageToImageList("about_ebru", "images/about_ebru.gif", "images/about_ebru_over.gif", "images/about_ebru.gif");
AddImageToImageList("about_the_artist", "images/about_the_artist.gif", "images/about_the_artist_over.gif", "images/about_the_artist.gif");
AddImageToImageList("gallery", "images/gallery.gif", "images/gallery_over.gif", "images/gallery.gif");
AddImageToImageList("contact", "images/contact.gif", "images/contact_over.gif", "images/contact.gif");
AddImageToImageList("turkish", "images/turkish.gif", "images/turkish_over.gif", "images/turkish.gif");
// ------------>