function badBrowser(){
    if($.browser.msie) { return true; } // no SVG, Canvas, faulty handling of layout primitives.

    return false;
}

if(badBrowser()) {
    $(function(){
	$("<div id='browserWarning'>Your browser is inadequate and only capable of rendering a degraded version of this site. Please consider switching to <a href='http://opera.com/download'>Opera</a>, <a href='http://getfirefox.com'>FireFox</a>, <a href='http://www.apple.com/safari/'>Safari</a>, <a href='http://www.google.com/chrome'>Google Chrome</a>, or another capable browser. Thanks!</div> ")
	    .css({
		backgroundColor: '#fcfdde',
		'width': '100%',
		'border-top': 'solid 1px #000',
		'border-bottom': 'solid 1px #000',
		'text-align': 'center',
		padding:'5px 0px 5px 0px'
	    })
	    .prependTo("body");
    });	
}

