// 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/2-sobytiya/conferencii/conference_1.jpg');
messages[1] = new Array('pictures/2-sobytiya/conferencii/conference_2.jpg');
messages[2] = new Array('pictures/2-sobytiya/conferencii/conference_3.jpg');
messages[3] = new Array('pictures/2-sobytiya/conferencii/conference_4.jpg');
messages[4] = new Array('pictures/2-sobytiya/conferencii/conference_5.jpg');
messages[5] = new Array('pictures/2-sobytiya/conferencii/conference_6.jpg');
messages[6] = new Array('pictures/2-sobytiya/conferencii/conference_7.jpg');
messages[7] = new Array('pictures/2-sobytiya/conferencii/conference_8.jpg');
messages[8] = new Array('pictures/2-sobytiya/conferencii/conference_9.jpg');
messages[9] = new Array('pictures/2-sobytiya/conferencii/conference_10.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];
  }
}