function setMapDim() {
	var w = parseInt((d.body.offsetWidth * 0.7), 10);
	fObj.width = w + "px";
	fObj.height = (w * 187 / 282) + "px";
}

var fObj;

function initStreetMap() {
	var o = g("map");
	if (JJ.flash > 5) {
		o.innerHTML = '<embed id="map-file" src="/images/st_lucia_street_map.swf" quality="high" salign="t" wmode="transparent" bgcolor="#333344" width="100%" height="100%" type="application/x-shockwave-flash" />';
		fObj = g("map-file").style;
		setMapDim();
		window.onresize = setMapDim;
	}
	else {
		o.innerHTML = '<img src="/images/st_lucia_street_map.jpg" alt="Street Map of St. Lucia, KwaZulu-Natal, South Africa" title="" />';
	}
	init();
}

window.onload = initStreetMap;