// die IE6, die
$(function(){
	if(jQuery.browser.msie && jQuery.browser.version <= 6){
		var $body = $('body');	
		$body.empty();
		$body.css('padding', '10px');
		var $h1 = $('<h1>Unsupported Browser</h1>');
		var $p = $('<p></p>');
		var message = 'Your browser cannot successfully display this web site, and represents a profound security risk to you. ';
		message += 'Please upgrade to a modern version of <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet Explorer</a>, ';
		message += '<a href="http://www.mozilla.com/firefox/">Firefox</a>, or <a href="http://www.google.com/chrome">Google Chrome</a>.';
		$p.html(message);
		$body.append($h1);
		$body.append($p);
	}
});