/* --------------------------------
	Map、一覧切り替え
------------------------------- */

function changeList(prm) {
	var domain = location.hostname;

	if(prm == 'list'){
		$('#include_list').load('http://'+domain+'/shop/index.html?mod=inc');
	}else if(prm == 'map'){
		$('#include_list').load('http://'+domain+'/map/inner_map.html');
	}else{
		$('#include_list').load('http://'+domain+'/map/inner_map.html');
	}
}

/* --------------------------------
	Mapのみ切り替え
-------------------------------- */

function changeMap(prm1,prm2) {
	if(prm2 == 1){
		if($('#intro').length){
			$('#intro').replaceWith('<iframe id="gmap" width="730" height="486" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="' + prm1 +'"></iframe>');
		}else{
			$('#gmap').attr({src:prm1});
		}
	}else if(prm2 == 2){
		$('#include_list').html('<iframe id="gmap" width="730" height="486" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="' + prm1 +'"></iframe>');
		$('.shop_replace').hide();
	}else{
		$('#gmap').attr({src:prm1});
	}
}

/* --------------------------------
	一覧のみ切り替え
-------------------------------- */
function changeCategory(prm1) {

	$('#include_list').load('list.html?'+prm1+' #include_list');
//	var title.load('list.html?'+prm1+' title');
//	$(".title").text('タイトル');

}

