//-------------------------------------------
//  ヘッダー（メーカー）
//-------------------------------------------
function SetOptionMaker(n){
	$.ajax({
		type: "GET",
		url: "/common/php/search_maker.php",
		data: 'search_marker='+n,
		success: function(j){
			if(j) {
				$('#search_marker').append(j);
			}
		}
	});
}


//-------------------------------------------
//  ヘッダー（カテゴリ）
//-------------------------------------------
function SetOptionCategory(n){
	$.ajax({
		type: "GET",
		url: "/common/php/search_category.php",
		data: 'search_category='+n,
		success: function(j){
			if(j) {
				$('#search_category').append(j);
			}
		}
	});
}


//-------------------------------------------
//  サイド（カテゴリ）
//-------------------------------------------
function SetSecondaryCategory() {
	$.ajax({
		type: "GET",
		url: "/common/php/secondary_category.php",
		success: function(j){
			if(j) {
				$('#secondary_category').append(j);
			}
		}
	});
}


