// cache.js
function cacheOff() {				
	document.getElementById('cache').style.display = "none";
}

window.onload = cacheOff;
