/**
 * jQuery noie6
 * A jQuery plugin to display text for IE6 Users.
 *
 * v0.0.1 - 31 March 2010
 *
 * Copyright (c) 2010 Donn Felker (http://twitter.com/donnfelker)
 * Dual licensed under the MIT and GPL licenses.
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.opensource.org/licenses/gpl-license.php
 *
 * Use $.noie6();
 *
 **/
;jQuery.noie6 = function (x) {
    // Stolen from thickbox
    if (typeof document.body.style.maxHeight === "undefined") {
        $("body").html("<style>		body {background-color: #111;color: #FFF;font-family: Trebuchet MS, 'Helvetica Neue', Arial, sans-serif;			font-weight: light;			letter-spacing: 1px;			line-height: 1.5;		}		h1 {	color:#FFF;		font-size: 60px;			font-weight: bold;			line-height: 1;			margin: 40px 10px 10px;			text-align: center;		}		h2 {	color: #FFF;		font-size: 20px;			font-weight: normal;			line-height: 1.2;			margin-bottom: 20px;			margin-right: 10px;			margin-left: 10px;			text-align: center;		}		a:link,		a:visited,		a:hover,		a:focus,		a:active {			border: none;			color: #5EA9FF;			font-weight: bold;			letter-spacing: 1.5px;			text-decoration: none;		}		.container {			margin: 0 auto;			width: 540px;		}	</style><div class=\"container\">		<h1>Sorry, we do not support IE6.</h1>		<h2>Please <a href=\"http://www.microsoft.com/ie\" target=\"_blank\" title=\"Upgrade IE\">upgrade your browser</a> to a recent version of Internet Explorer</h2>    </div>");
    }
};
