// JavaScript Document

function showInd () {
if (!document.getElementById) return true;
  
var mujump=document.getElementById('wrapper');

mujump.onclick = function Jump()
{
	window.location.href = ('home.html');
}
 return false;
}

window.onload = showInd;