// redirectMobile.js v1.0.0, Tue Dec 27 22:07:12 2011

	/*
	if (screen.width <= 699) {
		document.location = "http://mobi.vanwijhecons.nl";
	}
	*/

	if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
	   location.replace("http://mobi.vanwijhecons.nl");
	}	

