$(document).ready(function()
{
	//alert($.browser.version);
	
	if(($.browser.msie === true) && ($.browser.version <= 6.0))
	{
		$("#errorConsole").css("visibility", "visible");
	
		$("#errorConsole").html("<p>Your web browser is out of date, and so this page will not display correctly.<br />Please click a button below to install the latest version of either Firefox or Internet Explorer</p><p><a href='http://www.mozilla.com/en-US/?from=sfx&amp;uid=0&amp;t=456'><img src='http://sfx-images.mozilla.org/affiliates/Buttons/Firefox3.5/110x32_get.png' alt='Spread Firefox Affiliate Button' border='0' /></a> <a href='http://go.microsoft.com/fwlink/?LinkID=142200'><img src='http://www.microsoft.com/library/media/1033/windows/images/internet-explorer/default/ie8_logo.gif' alt='Internet Explorer 8 Logo' border='0' style='border:1px solid #AAA' /></a></p>");
		
		//$("#errorConsole").slideDown(500);
	}
});