/* jQuery IE6(ish) detect by Rick Nunn (ricknunn.com) */

$(document).ready(function(){
	if (typeof document.body.style.maxHeight == "undefined"){
  		$.get('/js/ie6_message.html',function(html){
    	$('body').prepend(html);
    	$('html').addClass('ie6')
   	});
	}
});