function centerMe() {
	var screenx = document.body.offsetWidth;
	var wrapx = document.getElementById('wrap').offsetWidth;
	var shift = ( screenx - wrapx ) / 2;
	document.getElementById('wrap').style.marginLeft = shift;

	var re = /music\.html/;
	if (re.test(document.URL)) {
			document.getElementById('main').style.width = "95%";
	} else {
		if (document.all && !window.opera) {
			document.getElementById('main').style.width = "80%";
		}
	}
}

function alignLineUp() {
	document.getElementById('border').style.height = "95%";
	document.getElementById('border').style.marginLeft = "2%";
 	document.getElementById('border').style.marginRight = "2%";
}

function alignAboutPics() {
	// Scheiss Internet Explorer
	if (document.all && !window.opera) {
		document.getElementById('aboutpics').style.top = "5.1em";
		document.getElementById('aboutpics').style.left = "23em";
	}
}

