
			function changeProductList(order) {
				loc = location.href;
				loc = loc.replace(/\/sort\/[^\/]+/, '');
				loc += '/sort/' + order;
				location.href = loc;
			}
		var brandDetailMarginBottom = 0;
		$(document).ready(function(){
			$('p#brandDetailText').slideToggle();
			brandDetailMarginBottom = $('div#brandDetail').css('margin-bottom');
			$('a#brandDetailClose').click(
				function () {
					$('div#brandDetail').slideToggle('fast',
						function () {
							$('div#brandDetail').css('margin-bottom',0);
							$('p#brandDetailWidgetText').slideToggle();
							$('a#brandDetailWidgetOpen').show();
						}
					);
				}
			);
			$('a#brandDetailWidgetOpen').click(
				function () {
					$('div#brandDetail').slideToggle('fast',
						function () {
							$('div#brandDetail').css('margin-bottom', brandDetailMarginBottom);
							$('p#brandDetailText').show();
							$('p#brandDetailWidgetText').slideToggle();
							$('a#brandDetailWidgetOpen').hide();
						}
					);
				}
			);
		});
	
		function openDetailException(year) {
			$('p#brandExtend_' + year).slideToggle();
		}