
$$('.vestigingsdot').each(function(dotli) {
		
		var coords = dotli.getElement('.data .coords').innerHTML.split(',');
		dotli.data = [];
		dotli.data.x = coords[0];
		dotli.data.y = coords[1];
		dotli.data.locatie = dotli.getElement('.data .locatie').innerHTML;
		dotli.data.telephone = dotli.getElement('.data .telephone').innerHTML;
		dotli.data.img = dotli.getElement('.data .img').innerHTML;
		dotli.data.vestiging = dotli.getElement('.data .vestiging').innerHTML;
		dotli.data.title = dotli.getElement('.data .title').innerHTML;
		dotli.data.link = dotli.getElement('.data .link').innerHTML;
		dotli.data.stuurmail = dotli.getElement('.data .stuurmail').innerHTML;
		dotli.data.tel = dotli.getElement('.data .tel').innerHTML;
		
		dotli.onmouseover=function() {
			showVestigingInfo(dotli.data.y,dotli.data.x,dotli.data.locatie, dotli.data.telephone, dotli.data.img, 
			dotli.data.vestiging, dotli.data.title, dotli.data.link,dotli.data.stuurmail,dotli.data.tel);
		}; 
		
		dotli.onmouseout = function() {
			document.getElementById('vestiging_info').fuse = 
				setTimeout('document.getElementById(\'vestiging_info\').style.display = \'none\'',1000);
		};
});

function showVestigingInfo(y,x,locatie, telephone, img, vestiging, title, link, stuurmail, tel) {

	var div = document.getElementById('vestiging_info');
	div.style.display = 'block';

	var a = document.getElementById('vestiging_link');

	if (div.fuse) 
		clearTimeout(div.fuse);

//		onmouseover="showVestigingInfo({$this->getOffsetPopupY()},{$this->getOffsetPopupX()},'{$this->location|escape:javascript}','{$this->telephone|escape:javascript}','{$this->image|escape:javascript}','{$this->l('Vestiging:')|escape:javascript}','{$this->getTitle()|escape:javascript}', '{$this->getContactPagePath()}?l={$this->getStaticId()}');" 
	a.onmouseover = function() {
		if (div.fuse) 
			clearTimeout(div.fuse);
	};

//		onmouseout="setTimeout('document.getElementById(\'vestiging_info\').style.display = \'none\'',1000);" 
	a.onmouseout = function() {
		div.fuse = setTimeout('document.getElementById(\'vestiging_info\').style.display = \'none\'',1000);
	}
	
	xStart = -230;
	yStart = -23;
	div.style.marginTop = yStart+parseInt(y) + "px";
	div.style.marginLeft = xStart+parseInt(x) + "px";

	$("vestiging_link").href = link;

	span = document.getElementById('vestigingen_contact');
	span.innerHTML = "Huis Advocaten " + "<br />" + locatie + "<br />" + tel + ": " + telephone + "<span class=\"contact\">" + stuurmail + "</span>";

	if (null != img) {
		document.vestiging_img.src = '/uploads/location-thumb/'+img;
		/*document.vestiging_img.alt = vestiging + title;*/
	}
}

