// 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/5-komanda/alexander_anushin.jpg');
messages[1] = new Array('pictures/5-komanda/anatoliy_grechichev1.jpg');
messages[2] = new Array('pictures/5-komanda/anatoliy_grechichev2.jpg');
messages[3] = new Array('pictures/5-komanda/maria_tihonova1.jpg');
messages[4] = new Array('pictures/5-komanda/maria_tihonova2.jpg');
messages[5] = new Array('pictures/5-komanda/mikhail_vorobjov1.jpg');
messages[6] = new Array('pictures/5-komanda/mikhail_vorobjov2.jpg');
messages[7] = new Array('pictures/5-komanda/mikhail_vorobjov3.jpg');
messages[8] = new Array('pictures/5-komanda/mikhail_vorobjov4.jpg');
messages[9] = new Array('pictures/5-komanda/sergei_vaskin.jpg');
messages[10] = new Array('pictures/5-komanda/alexander_anushin_2.jpg');
messages[11] = new Array('pictures/5-komanda/alexander_anushin_3.jpg');
messages[12] = new Array('pictures/5-komanda/alexander_anushin_4.jpg');
messages[13] = new Array('pictures/5-komanda/alexander_kazakov_1.jpg');
messages[14] = new Array('pictures/5-komanda/alexander_kazakov_2.jpg');
messages[15] = new Array('pictures/5-komanda/alexander_pavlov_1.jpg');
messages[16] = new Array('pictures/5-komanda/alexander_pavlov_2.jpg');
messages[17] = new Array('pictures/5-komanda/maria_tihonova3.jpg');
messages[18] = new Array('pictures/5-komanda/sergei_pavlov.jpg');
messages[19] = new Array('pictures/5-komanda/viktoria_pashkova_1.jpg');
messages[20] = new Array('pictures/5-komanda/viktoria_pashkova_2.jpg');
messages[21] = new Array('pictures/5-komanda/viktoria_pashkova_3.jpg');
messages[22] = new Array('pictures/5-komanda/maria_tihonova4.jpg');
messages[23] = new Array('pictures/5-komanda/working/01.jpg');
messages[24] = new Array('pictures/5-komanda/working/02.jpg');
messages[25] = new Array('pictures/5-komanda/working/03.jpg');
messages[26] = new Array('pictures/5-komanda/working/04.jpg');
messages[27] = new Array('pictures/5-komanda/working/05.jpg');
messages[28] = new Array('pictures/5-komanda/working/06.jpg');
messages[29] = new Array('pictures/sasha_2.jpg');
messages[30] = new Array('pictures/3-uslugi/foto-portfolio/_people/mariya_zeinalova.jpg');
messages[80] = new Array('pictures/3-uslugi/foto-portfolio/alexander_anushin/anushin_04.jpg');
messages[81] = new Array('pictures/3-uslugi/foto-portfolio/alexander_anushin/anushin_07.jpg');
messages[82] = new Array('pictures/3-uslugi/foto-portfolio/mariya_zeinalova/04.jpg');
messages[92] = new Array('pictures/3-uslugi/foto-portfolio/mariya_zeinalova/14.jpg');
messages[96] = new Array('pictures/3-uslugi/foto-portfolio/mariya_zeinalova/18.jpg');
messages[99] = new Array('pictures/3-uslugi/foto-portfolio/mariya_zeinalova/21.jpg');
messages[167] = new Array('pictures/2-sobytiya/svadby/wedding_04.jpg');
messages[175] = new Array('pictures/2-sobytiya/svadby/wedding_12.jpg');
messages[179] = new Array('pictures/2-sobytiya/svadby/wedding_21.jpg');
messages[232] = new Array('pictures/3-uslugi/foto-portfolio/alexander_anushin/new2/svadba/02.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];
  }
}