$(function(){
	if($.browser.msie === true){
		if($.cookie("dont-show-ie-warning") != "true"){
			alert("Sorry for the interruption, but I noticed you are using Windows Internet Explorer. I do not recommend this browser as it does not render my website correctly. You may continue to use IE, no offense, but I would rather suggest you start using Safari by Apple (www.apple.com/safari), or Firefox by Mozilla (www.firefox.com).\n\nThis message will not show up for the next year, on this computer.");
			$.cookie("dont-show-ie-warning", true, { expires: 365.25 });
		}
	}
});