function otherResize(){
		var wrap = $('#wrap');
		var maxHeight = 0;

		$('.middle')
		.css('min-height', 0)
		.find('.content').each(function()
		{
			var height = $(this).height();
	
			if (maxHeight < height)
				maxHeight = height;
		}).end()
		.css('min-height', maxHeight).css('min-height', wrap.height());

}

$(document).ready(
	function()
	{
		

	
	$('dd li .pseudo-href').click(
			function()
			{
				if( $(this).parent().parent().attr("class") == "rounded")
				{
				$(".address-list").hide(300);
				setTimeout(function(){$(".country_container .rounded").removeClass('rounded');}, 280);
				}
				else
				{
					var obj = this;
					if($(".rounded").length == 0){var timeout = 0;}
					else
					{	
						var timeout = 300;
						$(".address-list").hide(300);
						$(".country_container .rounded").removeClass('rounded');
					}
					
					setTimeout(function(){$(obj).parent().parent().next('ul').andSelf().addClass('rounded');
					$(obj).parent().children(".address-list").show(300);
					$("dd ul").each(function(){$(this).css("z-index", "0")});
					$("li.rounded").parent().css("z-index", "1");
}, timeout);
					
				
				}
				setTimeout(function(){if ($.browser.msie)
					{
						carcas.ieResize();
					}
					else
					{
						otherResize();
					}
				}, 300);

			}
		);
	}
);