// Image preloader
function loadImages() {
	chepic_on = new Image();
	ceepic_on = new Image();
	ecepic_on = new Image();
	mepic_on = new Image();
	mempic_on = new Image();

	chebutton_on = new Image();
	ceebutton_on = new Image();
	ecebutton_on = new Image();
	mebutton_on = new Image();
	membutton_on = new Image();

	chepic_on.src = "chepic2.jpg";
	ceepic_on.src = "ceepic2.jpg";
	ecepic_on.src = "ecepic2.jpg";
	mepic_on.src = "mepic2.jpg";
	mempic_on.src = "mempic2.jpg";

	chebutton_on.src = "chebutton2.gif";
	ceebutton_on.src = "ceebutton2.gif";
	ecebutton_on.src = "ecebutton2.gif";
	mebutton_on.src = "mebutton2.gif";
	membutton_on.src = "membutton2.gif";
}


// Preload images
if (document.images) {
	loadImages();
}


// Mouseover script for changing images and buttons
function changeIm(name, x) {
	document[name + "pic"].src = name + "pic" + x + ".jpg";
	document[name + "button"].src = name + "button" + x + ".gif";
}

