﻿var arrayCaption = new Array();
var arrayImages  = new Array();
var rootPath	 = "/PublishingImages/";

	setMenu("אודות הישוב", 		"b1.gif");
	setMenu("ועד מקומי", 		"b2.gif");
	setMenu("תרבות ופנאי", 		"b3.gif");
	setMenu("חינוך", 			"b4.gif");
	setMenu("שירות לתושב", 		"b5.gif");
	setMenu("יהדות", 			"b6.gif");
	setMenu("חידון התנ&quot;ך האזורי", "bt.gif");

function getImageMenu(caption){
var foundIndex = findByCaption(caption);

	if(foundIndex == -1)
		document.write(caption);
	else
		document.write("<img src='" + rootPath + arrayImages[foundIndex] + "' alt='" + caption + "' title='" + caption + "' />");
}

function findByCaption(caption){
	for(var i=0;i<arrayCaption.length;i++){
		if(caption == arrayCaption[i]) return i;
	}	
	return -1;
}

function setMenu(caption, image){
var reloadImage = new Image();
var index 		= arrayCaption.length;

	reloadImage.src     = rootPath + image;
	arrayCaption[index] = caption;
	arrayImages[index]  = image;
}
