// ===================================================================
// Author: Kolibrie Creatieve Media (c) 2006
// http://www.kolibrie.net/
// ===================================================================

function objRef(id) {if (document.getElementById(id)) return document.getElementById(id)}
function styleRef(id) {return this.objRef(id).style}

function hl(id){
	b=id.src;
	s=(b.substring(b.length-4,b.length-5)==0)?'1':'0';
	id.src=(b.substring(b.length-5,0)+s+b.substring(b.length,b.length-4));
}

var xOffset=0;
function initialize() {
	if (window.innerWidth) xOffset=parseInt((window.innerWidth)/2)-383      // FireFox en Safari
	else xOffset=parseInt((document.body.clientWidth)/2)-383                // Internet Explorer
	if (xOffset<4) xOffset=4;
	styleRef('logo').left=xOffset+'px';
	styleRef('logo').visibility='visible';
	if (objRef('map') && map==null) {
		setTimeout('load()',500)
	}
}


