if (document.images) {
	var onImgArray = new Array()
	onImgArray[1] = new Image
	onImgArray[2] = new Image
	onImgArray[3] = new Image
	onImgArray[4] = new Image
	onImgArray[5] = new Image
	onImgArray[6] = new Image
	onImgArray[7] = new Image
	onImgArray[8] = new Image
	onImgArray[1].src = "/images/menu/ahome.gif"
	onImgArray[2].src = "/images/menu/anews.gif"
	onImgArray[3].src = "/images/menu/athefilms.gif"
	onImgArray[4].src = "/images/menu/aaboutus.gif"
	onImgArray[5].src = "/images/menu/ajoinus.gif"
	onImgArray[6].src = "/images/menu/alinks.gif"
	onImgArray[7].src = "/images/menu/acontactus.gif"
	onImgArray[8].src = "/images/menu/adonate.gif"

	var offImgArray = new Array()
	offImgArray[1] = new Image
	offImgArray[2] = new Image
	offImgArray[3] = new Image
	offImgArray[4] = new Image
	offImgArray[5] = new Image
	offImgArray[6] = new Image
	offImgArray[7] = new Image
	offImgArray[8] = new Image
	offImgArray[1].src = "/images/menu/home.gif"
	offImgArray[2].src = "/images/menu/news.gif"
	offImgArray[3].src = "/images/menu/thefilms.gif"
	offImgArray[4].src = "/images/menu/aboutus.gif"
	offImgArray[5].src = "/images/menu/joinus.gif"
	offImgArray[6].src = "/images/menu/links.gif"
	offImgArray[7].src = "/images/menu/contactus.gif"
	offImgArray[8].src = "/images/menu/donate.gif"
}

function imageOn(i) {
	if (document.images) {
		document.images["btn" + i].src = onImgArray[i].src
	}
}
function imageOff(i) {
	if (document.images) {
		document.images["btn" + i].src = offImgArray[i].src
	}
}

function openCampaignWindow() { 
	newWindow = window.open('join_the_campaign.php','Join_The_Campaign','width=600,height=400,top=100,left=100,scrollbars=0,resizable=0');
	newWindow.focus();
	return;
} 

function closeWindow() {
    self.close();
    opener.location.reload(true);
}
