jQuery(document).ready(function() {

/* ================================================================================

	Scroll Top

================================================================================ */

	jQuery('a[href^=#header]').bind("click", function(event) {
		event.preventDefault();
		var ziel = jQuery(this).attr("href");

		jQuery('html,body').animate({
				scrollTop: jQuery(ziel).offset().top
		}, 1000);
		return false;
	});

});


/* ================================================================================

	施設案内別ウィンドウ

================================================================================ */
function subwin(url){
	w=window.open(url,"subwin","width=600,height=550,location=0,scrollbars=yes,resizable=yes,menubar=0,status=yes");
	window.w.focus();
}
