function showInd () {
if (!document.getElementById) return true;
  
var mujump=document.getElementById('header');

mujump.onclick = function Jump()
{
	window.location.href = ('index.html');
}
 return false;
}

window.onload = showInd;