/* HOMEPAGE Layer swapping */
function swapLayer(show,hide) {
	if (document.getElementById('hpTabUK') && document.getElementById('hpTabCE')) {
		document.getElementById(show).style.display="block";
		document.getElementById(hide).style.display="none";
	}
}

/* HOMEPAGE Product Quick Jump */
function showPage(id) {
	if (document.getElementById('urlSelector'+id)) {
		window.location=document.getElementById('urlSelector'+id).value;
	}
}