. */ var dom = (document.getElementById) ? true : false; var ns5 = ((navigator.userAgent.indexOf("Gecko")>-1) && dom) ? true: false; var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false; var ns4 = (document.layers && !dom) ? true : false; var ie4 = (document.all && !dom) ? true : false; var nodyn = (!ns5 && !ns4 && !ie4 && !ie5) ? true : false; // resize fix for ns4 var origWidth, origHeight; if (ns4) { origWidth = window.innerWidth; origHeight = window.innerHeight; window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); } } // avoid error of passing event object in older browsers if (nodyn) { event = "nope" } /////////////////////// CUSTOMIZE HERE //////////////////// // settings for tooltip // Do you want tip to move when mouse moves over link? var tipFollowMouse= true; // Be sure to set tipWidth wide enough for widest image var tipWidth= 204; var offX= 20; // how far from mouse to show tip var offY= 12; var tipFontFamily= "Verdana, arial, helvetica, sans-serif"; var tipFontSize= "8pt"; // set default text color and background color for tooltip here // individual tooltips can have their own (set in messages arrays) // but don't have to var tipFontColor= "#000000"; var tipBgColor= "#DDECFF"; var tipBorderColor= "#000080"; var tipBorderWidth= 3; var tipBorderStyle= "ridge"; var tipPadding= 4; // 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('images_m/jezero/icons/court.jpg','Court House',"#FFFFFF"); messages[1] = new Array('images_m/jezero/icons/marche_house.jpg','Marče house',"#FFFFFF"); messages[2] = new Array('images_m/jezero/icons/colombani.jpg','Kolombani house',"#FFFFFF"); messages[3] = new Array('images_m/jezero/icons/kavana.jpg','Gradska Kavana',"#FFFFFF"); messages[4] = new Array('images_m/jezero/icons/vucemilovic_house.jpg','Vučemilović house',"#FFFFFF"); messages[5] = new Array('images_m/jezero/icons/jerkovic_house.jpg','Jerković house',"#FFFFFF"); messages[6] = new Array('images_m/jezero/icons/county.jpg','County House',"#FFFFFF"); messages[7] = new Array('images_m/jezero/icons/ferrari_house.jpg','Ferari house',"#FFFFFF"); messages[8] = new Array('images_m/jezero/icons/tonkovic_house2.jpg','Dr. Tonković house',"#FFFFFF"); messages[9] = new Array('images_m/jezero/icons/coloman_jerkovic.jpg','Koloman Jerković house',"#FFFFFF"); messages[10] = new Array('images_m/jezero/icons/ciciljani.jpg','Ciciljani house',"#FFFFFF"); messages[11] = new Array('images_m/jezero/icons/nikolic.jpg','Nikolić house',"#FFFFFF"); messages[12] = new Array('images_m/jezero/icons/ligutica_house.jpg','Ligutić house',"#FFFFFF"); messages[13] = new Array('images_m/jezero/icons/pavicic.jpg','Pavičić house',"#FFFFFF"); messages[14] = new Array('images_m/jezero/icons/soic.jpg','Vrdoljak house',"#FFFFFF"); messages[15] = new Array('images_m/jezero/icons/whiteh.jpg','"White House"',"#FFFFFF"); messages[16] = new Array('images_m/jezero/icons/benzon.jpg','Benzon house',"#FFFFFF"); messages[17] = new Array('images_m/jezero/icons/rajic.jpg','Rajić house',"#FFFFFF"); messages[18] = new Array('images_m/jezero/icons/busic.jpg','Bušić house',"#FFFFFF"); messages[19] = new Array('images_m/jezero/icons/radovinovic.jpg','Radovinović house',"#FFFFFF"); //////////////////// 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'; var endStr = ''; //////////////////////////////////////////////////////////// // initTip - initialization for tooltip. // Global variables for tooltip. // Set styles for all but ns4. // Set up mousemove capture if tipFollowMouse set true. //////////////////////////////////////////////////////////// var tooltip, tipcss; function initTip() { if (nodyn) return; tooltip = (ns4)? document.tipDiv.document: (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null; tipcss = (ns4)? document.tipDiv: tooltip.style; if (ie4||ie5||ns5) { // ns4 would lose all this on rewrites tipcss.width = tipWidth+"px"; tipcss.fontFamily = tipFontFamily; tipcss.fontSize = tipFontSize; tipcss.color = tipFontColor; tipcss.backgroundColor = tipBgColor; tipcss.borderColor = tipBorderColor; tipcss.borderWidth = tipBorderWidth+"px"; tipcss.padding = tipPadding+"px"; tipcss.borderStyle = tipBorderStyle; } if (tooltip&&tipFollowMouse) { if (ns4) document.captureEvents(Event.MOUSEMOVE); document.onmousemove = trackMouse; } } ///////////////////////////////////////////////// // doTooltip function // Assembles content for tooltip and writes // it to tipDiv ///////////////////////////////////////////////// var t1,t2; // for setTimeouts var tipOn = false; // check if over tooltip link function doTooltip(evt,num,imagesStr) { if (!tooltip) return; if (t1) clearTimeout(t1); if (t2) clearTimeout(t2); tipOn = true; // set colors if included in imagesStr array if (imagesStr[num][2]) var curBgColor = imagesStr[num][2]; else curBgColor = tipBgColor; if (imagesStr[num][3]) var curFontColor = imagesStr[num][3]; else curFontColor = tipFontColor; if (ns4) { var tip = '
'+ startStr + imagesStr[num][0] + midStr + '' + imagesStr[num][1] + '' + endStr + '
'; tooltip.write(tip); tooltip.close(); } else if (ie4||ie5||ns5) { var tip = startStr + imagesStr[num][0] + midStr + '' + imagesStr[num][1] + '' + endStr; tipcss.backgroundColor = curBgColor; tooltip.innerHTML = tip; } if (!tipFollowMouse) positionTip(evt); else t1=setTimeout("tipcss.visibility='visible'",100); } var mouseX, mouseY; function trackMouse(evt) { mouseX = (ns4||ns5)? evt.pageX: window.event.clientX + document.body.scrollLeft; mouseY = (ns4||ns5)? evt.pageY: window.event.clientY + document.body.scrollTop; if (tipOn) positionTip(evt); } ///////////////////////////////////////////////////////////// // positionTip function // If tipFollowMouse set false, so trackMouse function // not being used, get position of mouseover event. // Calculations use mouseover event position, // offset amounts and tooltip width to position // tooltip within window. ///////////////////////////////////////////////////////////// function positionTip(evt) { if (!tipFollowMouse) { mouseX = (ns4||ns5)? evt.pageX: window.event.clientX + document.body.scrollLeft; mouseY = (ns4||ns5)? evt.pageY: window.event.clientY + document.body.scrollTop; } // tooltip width and height var tpWd = (ns4)? tooltip.width: (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth; var tpHt = (ns4)? tooltip.height: (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight; // document area in view (subtract scrollbar width for ns) var winWd = (ns4||ns5)? window.innerWidth-20+window.pageXOffset: document.body.clientWidth+document.body.scrollLeft; var winHt = (ns4||ns5)? window.innerHeight-20+window.pageYOffset: document.body.clientHeight+document.body.scrollTop; // check mouse position against tip and window dimensions // and position the tooltip if ((mouseX+offX+tpWd)>winWd) tipcss.left = (ns4)? mouseX-(tpWd+offX): mouseX-(tpWd+offX)+"px"; else tipcss.left = (ns4)? mouseX+offX: mouseX+offX+"px"; if ((mouseY+offY+tpHt)>winHt) tipcss.top = (ns4)? winHt-(tpHt+offY): winHt-(tpHt+offY)+"px"; else tipcss.top = (ns4)? mouseY+offY: mouseY+offY+"px"; if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100); } function hideTip() { if (!tooltip) return; t2=setTimeout("tipcss.visibility='hidden'",100); tipOn = false; } //-->
 
   
 

Jezero quarter is, after Bazana the second oldest Imotski quarter.  Its development started in the 18th century.
Jezero quarter covers the broader area between Ante Starčević and Vladimir Nazor streets, Modro jezero on the west and Volat and Saint Francis church on the east.  Ante Starčević street or "Pjaca" as it is better known among older people was the first well formed street in Imotski tracing its origins to the first part of the 18th century during the Venetian rule, when it was called "Piazza dei signori". It used to be the most important street where the most of the shops where.   After the WW II the street starting losing the prestige to Stjepan Radić street.


Jezero quarter in 1835


The traffic was forbidden in Ante Starčević street in mid 1990-ies after the street was covered with white stone from Brač. Today, it is a promenade connecting Pazar, the center of town to Modro Jezero main vista.   The street has many well preserved old houses, like Jerković and Vrdoljak's, including the now closed town coffee house (Gradska Kavana).

Old BetonGradska Kavana establishment was a center of unofficial town life.  It had memorable owners in the 20th century, starting with Manda, continuing with Boško, and finishing with Kris. The same building housed the town reading room on the second floor. On the opposite side of Gradska Kavana it used to be a concrete surface were there was a small open market during the day.  It also served as a small soccer field.  So called "White House" was built in its place in the 1970-ies that had offices of "Imotska Krajina" newspaper, few cultural organizations, and communist party ranking governor's offices. The ground floor has a space for cultural happenings that is used to make performances, exhibitions, and dances. After the WW II it used to serve as a town cinema.  It is again used for cultural happening like exhibitions, plays, and planning.



Closer to the lake is the administrative part of the town.   At the beginning of the 20th century, during the rein of Frantz Joseph the County and Court Houses were built, in 1900 and 1915 respectively. The Court House is the largest and most beautiful building of its kind in the wider central Dalmatia region, barring Split.  Next to it there was a Shell gas station when the first automobiles appeared.

The old court was in Marče house, located near the St. Francis church belonged to Marče brothers, who were successful merchants.  On both sides  on the Vladimir Nazor street the house is bordered by Kolombani houses.  The Colombani's was one of the oldest Imotski families since the times the  census was performed.  They came from Italy after the Venetians with the help of  local population have freed Imotski from Turkish occupation.  Church and Marče and Kolombani houses were at the border line and were sometimes considered part of Djirada.


A region near Modro Jezero is a strict Jezero quarter.  This part of Imotski was well known for its hospital station, bakery, town bath house, and butchery.  That part of the town has also seen rememberable inkeepers like Pera Marendić and Kasum. 

The families that inhabited Ante Starčević street after WW I, according to Prof Mostarčić were in order from Volat on the north side: Vrčić, Bauk (2), Pušić, Jerković, Duzbaba, Bitanga, Šoić (2), Ferari, Rako, Dubravac, Vrdoljak (2), Bilić, Ivanović and Valdevit.  On the south side from Volat: Benzon, Jelavić, Tripalo, Ligutić, Ciciliani, Bilopavlović, Skataretiko, Marendić, Nikolić, Ivanović, and Anić.

The families that inhabited the Modro jezero at the same time according to the same source were Ivanović (4), Malić, Markota, Mirosević, Protopopov, Nikolić (5), Vodanović, Vujević, Rako (2), Težulat (2), and Mostarčić.  The numbers in the parenthesis denote the number of families.


Interactive map of Jezero quarter