// Redirect IE6 to no_support page
$(document).ready(function() {
	if($.browser.msie && $.browser.version == '6.0') {
		window.location = 'no_support.php';
	};
});