$(function()
{
	if ( $.browser.msie && $.browser.version == 6 )
	{
		
		// shows message at top of screen alerting user of IE6 nastiness
		showReducedFunctionalityMessage();
	
	
	
	
	
	
	
	}
});






// function definitions (only used by IE6 users)

function showReducedFunctionalityMessage()
{
	var x = '<div id="ie6message" style="zoom:1;hasLayout:1;position:absolute;top:0;left:0;width:100%;background:#FDF2AB;color:black;border-bottom:8px solid #eee;z-index:123123;line-height:150%;">';
	    	x+= '<div style="padding:5px;border-bottom:2px solid #A29330;">';
	    		x+= '<img src="/img/ie6/ie_error.gif" alt="Warning: " style="vertical-align:middle;margin:0 5px 0 0;" /><strong>';
	    		x+= 'Your browser (Internet Explorer 6) is out of date</strong><br/>It has known security flaws and may not display all features of this website and other websites.<br/>';
	    		x+= 'We strongly recommend that you upgrade to a newer browser: ';
				x+= '<a class="external" href="http://www.microsoft.com/windows/internet-explorer">Microsoft Internet Explorer</a> | ';
	    		x+= '<a class="external" href="http://www.mozilla.com/firefox">Mozilla Firefox</a> | ';
	    		x+= '<a class="external" href="http://www.apple.com/uk/safari/download">Apple Safari</a> | ';
	    		x+= '<a class="external" href="http://www.opera.com/download">Opera</a> | ';
	    		x+= '<a class="external" href="http://www.google.com/chrome">Google Chrome</a>';
	    		x+= '<a style="position:absolute;top:5px;right:5px;color:#a00;text-decoration:none;" class="icon ie_close" href="#ie6seen=1">close</a>';
	    	x+= '<div>';
	    x+= '</div>';
	    
	$('#wrapperWrap').append(x);
}



