$(document).ready(function(){
	var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
	if(IE6) {
		$('p').after('<p id="ie6">Your browser is causing web developers a lot of headaches. Please <a href="http://www.stopie6.com">upgrade</a>.</p>');
	}
	$.post('index.php?what=email',function(txt){$('ul#social').prepend(txt);});
});