var url=location.href;
if(url.match(/search/)){

}else{
	$(document).ready(function(){
	//alert(window.location.hash);
	$('#tabs div').hide();
	$('#tabs div:first').show();
	$('#tabs ul li:first').addClass('active');
	
	
	
	$('#tabs ul li a.tab_link').click(function(){
	$('#tabs ul li').removeClass('active');
	$(this).parent().addClass('active');
	var currentTab = $(this).attr('href');
	$('#tabs div').hide();
	$('#map').html('<iframe width="656" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?oe=utf-8&amp;hl=ja&amp;client=firefox-a&amp;ie=UTF8&amp;q=%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AC%E3%82%A4%E3%82%B9&amp;fb=1&amp;gl=jp&amp;hq=%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AC%E3%82%A4%E3%82%B9&amp;hnear=0x60188cb2eb3108d1:0xf11cd9b2395b6677,%E6%9D%B1%E4%BA%AC%E9%83%BD%E6%B8%8B%E8%B0%B7%E5%8C%BA&amp;cid=0,0,2919113656519753659&amp;t=m&amp;vpsrc=6&amp;brcurrent=3,0x6018f416c124670d:0xc7ad21253d829844,0&amp;ll=35.618774,139.618485&amp;spn=0.006105,0.014076&amp;z=16&amp;output=embed&amp;iwloc=B"></iframe>');
	$(currentTab).show();
	
	return false;
	});
	
	});
}

