$(document).ready(function() {
	$(document).pngFix();
	$('.textWrapper').corners('14px no-mozilla');
	
	$('.mediumleft img, .mediumright img, .mediumcenter img').css('border-bottom', '1px solid #EEDBB0');
	$('.mediumleft,.mediumright,.mediumcenter').css('position', 'relative').append("<div class='inMedRoundTopLeft'>" +
	"</div><div class='inMedRoundTopRight'></div>" +
	"<div class='inMedRoundBottomLeft'></div>" +
	"<div class='inMedRoundBottomRight'></div>");
	
	if($.browser.msie && $.browser.version <= 6.0)
	{
		$('#menuWrapper').height($('#menuWrapper').height()); // Gives #menuWrapper a height, so IE6 can render the bottom round corners
		$('ul.menu').height($('#menuWrapper').height());
		$('.menuBottomRound').css('display', 'block');
	}
});