// JavaScript Document// スムーズscroller 
document.write('<script type="text/javascript" src="./js/jquery.page-scroller-306.js"></script>');
document.write('<script type="text/javascript" src="./js/jquery.media.js"></script>');

///////////////onload/////////////////
jQuery(function(){

// <img class="img-on">指定で hover時にtest.gifがtest_on.gifになる */
jQuery("img.img-on").each(function() {
	var off = this.src;
	var dot = this.src.lastIndexOf('.');
	var on = this.src.substr(0, dot) +
	'-on' + this.src.substr(dot, 4);
	jQuery(this).hover(
		function() { this.src = on; },
		function() { this.src = off; });
	});


	dd = new Date();
	yy = dd.getYear();
	if (yy < 2000) { yy += 1900; }
	jQuery("div#footer span#year").html(yy);



	var date = new Date();
	var localtime = date.getTime();

});//onload end


///////////////function/////////////////

