$(document).ready(function(){
	if ($.browser.msie){
		
	}
	else {
		$('div.bottom').each(function(){
			sWidth = $(this).parent().width();
			$(this).width(sWidth);
		});
		$('div.middle-bottom').each(function(){
			sWidth = $(this).parent().parent().width();
			$(this).width(sWidth - 23);
		});
		$('div.corner-top-left').each(function(){
			sWidthUl = $(this).parent().width();
			sWidthLi = $(this).parent().parent().outerWidth();
			$(this).width(sWidthUl - sWidthLi - 1);
		});
	}
});