
//BLOGの最新記事の読み込み
$(function(){
	$('#blog_news').load('http://www.suigensui.com/blog/new.html');
});


//ページスクロール用イージング
jQuery.easing.quart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};


$(function(){
	
	/* ページスクロール =======================================*/
	jQuery('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var $target = jQuery(this.hash);
			$target = $target.length && $target || jQuery('[name=' + this.hash.slice(1) +']');
			if ($target.length) {
				var targetOffset = $target.offset().top;
				jQuery('html,body').animate({ scrollTop: targetOffset }, 800, 'quart');
				return false;
			}
		}
	});
	
});


//ウィンドウオープン
function openWin(w,h,targetURL) {
	leftPos = (screen.width) ? (screen.availWidth - w) / 2 : 0;
	topPos = (screen.height) ? (screen.availHeight - h) / 2 : 0;
	features = 'width='+w+',height='+h+',left='+leftPos+',top='+topPos+',toolbar=0,location=0,directories=0,status=0,menubars=0,scrollbars=1,resizable=1';
	newWin = window.open(targetURL,"openWin",features);
	newWin.focus();
}


//KISOの自然Flash
function runFlashNature() {
	
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="400" height="300" title="aboutnatural">\n');
	document.write('<param name="movie" value="img/natural.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="bgcolor" value="#fdf9f3" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<embed src="img/natural.swf" quality="high" bgcolor="#fdf9f3" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="400" height="300">\n');
	document.write('</embed>\n');
	document.write('</object>\n');
	
}




