// Redirect to Mobile site if the browser is an iPhone or iPod
cllc.page_ready(function() {
	if (navigator.userAgent.match(/iPhone|iPod/i)) {
		window.location.replace(window.location.protocol + "//" + window.location.hostname + "/en/mobile/");
	}
});