function initPage(){
	 
	////////////////////////////////////////////////////////////////////////////////////////////////
	// Banner nachladen
	
	if(document.getElementById('adtop')){
		document.getElementById('adtop').src='/sys/banner_bigsize.php';
	}
	
	////////////////////////////////////////////////////////////////////////////////////////////////
	// Banner2 nachladen
	
	if(document.getElementById('adtop2')){
		document.getElementById('adtop2').src='/sys/banner_bigsize.php';
	}
	
	////////////////////////////////////////////////////////////////////////////////////////////////
	// Banner_Start nachladen
	
	if(document.getElementById('adtop_start')){
		document.getElementById('adtop_start').src='/sys/banner_bigsizeadshopping.php';
	}
	

	////////////////////////////////////////////////////////////////////////////////////////////////
	// WeltzeitInfo nachladen
	
	if(document.getElementById('infoFrame')){
		document.getElementById('infoFrame').src='weltzeit_info.php?ort=Hamburg';
	}	
	
	////////////////////////////////////////////////////////////////////////////////////////////////
	// Addthis-Button nachladen
	
	if(document.getElementById('addthis')){
		var addthis_pub = 'uhrzeit';
		var addScript = document.createElement('script');
		var addthis_brand = "Uhrzeit.org";
		var addthis_language = "de"; 
		var addthis_options = 'ask, delicious, digg, email, facebook, favorites, friendfeed, google, misterwong, myweb, myspace, stumbleupon, twitter, more';
		addScript.type = 'text/javascript';
		addScript.src = 'http://s9.addthis.com/js/widget.php?v=10';
		document.body.appendChild(addScript);
		var addthisButton = '<a href="http://www.addthis.com/bookmark.php" onmouseover="return addthis_open(this, \'\', \''+location.href+'\',\''+document.title+'\');" onmouseout="addthis_close();" onclick="return addthis_sendto();"><img src="http://s7.addthis.com/static/btn/sm-share-en.gif" width="83" height="16" border="0" alt="Share" /></a>';
		document.getElementById('addthis').innerHTML = addthisButton;
	}
	
	////////////////////////////////////////////////////////////////////////////////////////////////
	// Auktion laden
	
	if (typeof ladeAuktion == "function"){ladeAuktion();}
	
	////////////////////////////////////////////////////////////////////////////////////////////////
	// eKomi-Tooltips laden
	if(typeof tooltip == "object"){
		try {tooltip.init();} catch (e) {/* No Tooltip installed*/}
	}
	
	////////////////////////////////////////////////////////////////////////////////////////////////
	// advertising.com Retargeting-Beacon laden
	
	if(("https:" != document.location.protocol)){
		var newImg = document.createElement("img");
		
		var imgSrc = document.createAttribute("src");
		imgSrc.nodeValue = 'http://servedby.advertising.com/site=703223/mnum=1516/bins=1/rich=0/logs=0/betr=A2717=[+]LP';
		newImg.setAttributeNode(imgSrc);

		var imgWidth = document.createAttribute("width");
		imgWidth.nodeValue = 1;
		newImg.setAttributeNode(imgWidth);

		var imgHeight = document.createAttribute("height");
		imgHeight.nodeValue = 1;
		newImg.setAttributeNode(imgHeight);
		
		document.body.appendChild(newImg);
	}
	
}
window.onload = initPage; 
