﻿// JavaScript Document

/*--------------------------------------------------------------------------*
 *  common script
 *--------------------------------------------------------------------------*/
// JavaScript Document
try {
document.execCommand('BackgroundImageCache', false, true); 
}catch(e) {}

//画面ロード時に実行
$(function(){
		// smooth scroller
		$("a[href^=#top]").click(function() {
			var hash = this.hash;
			if(!hash || hash == "#")
				return false;
			$($.browser.safari ? 'body' : 'html')
				.animate({scrollTop: $(hash).offset().top}, 500, "swing");
			return false;
		});
});




