var outdatedBlock = "";
outdatedBlock += '<div id="outdatedIE">';
outdatedBlock += '	Your browser is <b>out-of-date</b> and <b>no longer supported</b>. It has known <b>security flaws</b> and may <b>not display all features</b> of this and other websites.<br />';
outdatedBlock += '	We recommend that you immediately upgrade to one of the following FREE browsers:<br />';
outdatedBlock += '	<div style="padding-top:5px;">';
outdatedBlock += '		<a href="http://www.getfirefox.com/" target="_blank"><img src="/shared_lib/images/logo_firefox.jpg" width="38" height="39" alt="Mozilla Firefox" title="Mozilla Firefox" border="0" /> Mozilla Firefox</a>';
outdatedBlock += '		&nbsp; &nbsp;';
outdatedBlock += '		<a href="http://www.google.com/chrome/" target="_blank"><img src="/shared_lib/images/logo_chrome.jpg" width="38" height="39" alt="Google Chrome" title="Google Chrome" border="0" /> Google Chrome</a>';
outdatedBlock += '		&nbsp; &nbsp;';
outdatedBlock += '		<a href="http://www.microsoft.com/windows/internet-explorer/" target="_blank"><img src="/shared_lib/images/logo_ie.jpg" width="38" height="39" alt="Internet Explorer" title="Internet Explorer" border="0" /> Internet Explorer</a> (Version 8 or higher)';
outdatedBlock += '	</div>';
outdatedBlock += '</div>';

$(document).ready(function() {
	if ( navigator.userAgent.indexOf("MSIE 6") > -1 ) { $("body").prepend(outdatedBlock); }
});
