// IE6 Detection (using jQuery)
if($.browser.msie){
	userAgent = $.browser.version;
	userAgent = userAgent.substring(0,userAgent.indexOf('.'));
	version = userAgent;
	if(version == 6){
		window.location.href="http://www.thomasinebarnekow.com/IE6users.php";
	}
}

