var social={};
/*
social.cont=domID('linkeSpalte');
social.nodes=byTAG(social.cont, 'DIV');

for (var i=0;i<social.nodes.length;i++){
	var e=social.nodes[i];
	if(e.getAttribute('class')=='creditContainer'){
		while(e.parentNode!=social.cont){
			e=e.parentNode;
		}
		social.credit=e;
	}
	if(e.getAttribute('class')=='tx-timtabsociable-pi1'){
		social.dest=e;
	}
}
if(social.credit){
	social.popped=domID('linkeSpalte').removeChild(social.dest);
	domID('linkeSpalte').insertBefore(social.popped, social.credit);	
}
function debug(str) {
	if (String(window.location).indexOf('debug=1')>-1) alert(str);
}
*/