var el = document.getElementById('header');
el.onclick = function() {
    window.location.replace('http://www.anima-network.de');
};
el.onmouseover = function() {
    this.style.cursor = 'pointer';
	this.title = 'zur Startseite';
};
el.onmouseout = function() {
	this.removeAttribute('title');
	this.removeAttribute('style');
}
