jQuery(function($){
	var box = $('#refineSearch');
	var bh = box.height();
	if($.browser.msie){
		box.css({
				display: 'block',
				overflow: 'hidden',
				height: '0px'
			});
	}
	$("p.moreBtn a").click(function(){
		if ( $("p.moreBtn").hasClass("open") ) {
			//$("#refineSearch").slideDown();
			if($.browser.msie){
				box.animate({
								height: bh
							},{
								duration: 'slow',
								complete: function(){
								}
							});
			}else{
				box.slideDown('slow');
			}
			$("p.moreBtn a").html("詳細検索を閉じる");
			$("p.moreBtn").addClass("close");
			$("p.moreBtn").removeClass("open");
		}
		else if ( $("p.moreBtn").hasClass("close") ) {
			//$("#refineSearch").slideUp();
			if($.browser.msie){
				box.animate({
								height: '0px'
							},{
								duration: 'slow',
								complete: function(){
	
								}
							});
			}else{
				box.slideUp();
			}
			$("p.moreBtn a").html("詳細検索");
			$("p.moreBtn").addClass("open");
			$("p.moreBtn").removeClass("close");
		}
	});
    
});


