// tooltip content goes here (image, description, optional bgColor, optional textcolor)
var messages = new Array();
// multi-dimensional arrays containing: 
// image and text for tooltip
// optional: bgColor and color to be sent to tooltip
messages[0] = new Array('pictures/3-uslugi/restorany/restorany_01.jpg');
messages[1] = new Array('pictures/3-uslugi/restorany/restorany_02.jpg');
messages[2] = new Array('pictures/3-uslugi/restorany/restorany_03.jpg');
messages[3] = new Array('pictures/3-uslugi/restorany/restorany_04.jpg');
messages[4] = new Array('pictures/3-uslugi/restorany/restorany_05.jpg');
messages[5] = new Array('pictures/3-uslugi/restorany/restorany_06.jpg');
messages[6] = new Array('pictures/3-uslugi/restorany/restorany_07.jpg');
messages[7] = new Array('pictures/3-uslugi/restorany/restorany_08.jpg');
messages[8] = new Array('pictures/3-uslugi/restorany/restorany_09.jpg');
messages[9] = new Array('pictures/3-uslugi/restorany/restorany_10.jpg');
messages[10] = new Array('pictures/3-uslugi/restorany/restorany_11.jpg');
messages[11] = new Array('pictures/3-uslugi/restorany/restorany_12.jpg');
messages[12] = new Array('pictures/3-uslugi/restorany/restorany_13.jpg');
messages[13] = new Array('pictures/3-uslugi/restorany/restorany_14.jpg');
messages[14] = new Array('pictures/3-uslugi/restorany/restorany_15.jpg');
messages[15] = new Array('pictures/3-uslugi/restorany/restorany_16.jpg');
messages[16] = new Array('pictures/3-uslugi/restorany/restorany_17.jpg');
messages[17] = new Array('pictures/3-uslugi/restorany/restorany_18.jpg');

////////////////////  END OF CUSTOMIZATION AREA  ///////////////////

// preload images that are to appear in tooltip
// from arrays above
if (document.images) {
	var theImgs = new Array();
	for (var i=0; i<messages.length; i++) {
  	theImgs[i] = new Image();
		theImgs[i].src = messages[i][0];
  }
}
