jQuery(document).ready(function(){
	
	var preMobile = '/mobile';
	var noMobile = window.location.pathname.substr(0, preMobile.length) != preMobile;

	var noRef = true;
	if (document.referrer) {
		var refSameDomainPos = document.referrer.indexOf(window.location.hostname);
		noRef = (refSameDomainPos < 0) || (refSameDomainPos > 10);
	}
	if (jQuery.browser.mobile && noRef && noMobile) {
		var goMobile = confirm('Do you want to change to the mobile version of our website?' + "\r\n" + "\r\n"
			+ 'Möchten Sie auf die mobile Version der Website wechseln?');
		if (goMobile) {
			window.location = preMobile + window.location.pathname;
		}
	}
	

});
