var isIE = $.browser.msie;
var isIE6 = /MSIE 6\.0/i.test(window.navigator.userAgent);
var isIE7 = /MSIE 7\.0/i.test(window.navigator.userAgent);

// some versions of IE7 identify as IE6 AND IE7
$.browser.msie6 = isIE && isIE6 && !isIE7;

if ($.browser.msie6){
	window.location.href="/ie6.html";
}
