$(document).ready(function() {
//アコーディオン
	$('#shoplist').accordion({header:'h3',active:false,alwaysOpen:false,autoheight:false});
//スライディングボックス
	$('.boxgrid.captionfull').hover(function(){
	$(".cover", this).stop().animate({top:'80px'},{queue:false,duration:300});
	}, function() {
	$(".cover", this).stop().animate({top:'240px'},{queue:false,duration:900});
	});
//マップリンク
	$.fn.geomap = function(zoomLevel){
	if (!zoomLevel) zoomLevel = 15;
	return this.each(function(){
	var txt = $(this).text();
	$(this).html('<a href="http://maps.google.co.jp/maps?hl=ja&z='+zoomLevel+'&q='+txt+'" target="_blank">'+txt+'</a>');
	});
	}
	$(function() {
	$(".ic4").geomap(15);
	});
//スクロール
	$('a[href^=#]').click(function() {var href= this.hash;var $target = $(href == '#_top' ? 'body' : href);if($target.size()) { 
	var top = $target.offset().top; 
	$($.browser.safari ? 'body' : 'html').animate({scrollTop:top}, 600, 'swing'); 
	}
	return false;
	}); 
});
