function adjustHeaderObject() {
	// Nur wenn > IE 6 oder gar kein IE
	var images = ["shirt.png","cd.png","golfball.png","penna.png","accendino.png"];
	var objectLeft = 450;
	var titleWidth = $("site_title").getSize().x.toInt() + 20;
	var sloganWidth = $("slogan").getSize().x.toInt() + 20;
	if(titleWidth > sloganWidth) {
		var width = titleWidth;
	}
	else {
		var width = sloganWidth;
	}
	if(width < objectLeft) {
		// nur wenn Image nicht über Slogan / Title geht
		var curImg = "/fileadmin/images/headerObjects/"+images.getRandom();
		new Asset.images([curImg], {
			"onComplete": function() {
				var theImage = new Element("img", {
					src: curImg,
					styles: {
						"margin-left": objectLeft,
						"opacity": 0,
						"position": "absolute",
						"top": 0
					},
					tween: {
						duration: "short"
					}
				});
				$("banner").adopt(theImage);
				if(!Browser.Engine.trident) {
					theImage.tween("opacity", 1);
				}
				else {
					theImage.setStyle("opacity", 1);
				}
			}
		});
	}	
}

function addLogoBottom() {
	var toTop = $("content").getSize().y.toInt() + $("banner").getSize().y.toInt() - 97;
	if($("logo_bottom")) {
		$("logo_bottom").setStyles({
			"display": "block",
			"top": toTop
		});
	}	
}

