$(function(){
	if($.browser.msie){
		$("div.resume").each(function(i){
			var _this=$(this);
			if (_this.html().charCodeAt(0)>256){
				_this.css({top:"-5px",overflow:"hidden"});
				_this.height(_this.height()-13);
				this.scrollTop=20;
			}
		}); 
	}
});
