// JavaScript Document

(function($){

	$(document).ready(function(){

		// set year in copyrights.
		$('#footer .box01 address').html('COPYRIGHT&copy;1998-'+ (new Date().getFullYear() || '2009') +' HIRAMATSU INC. ALL RIGHTS RESERVED.');

		// for ie6.
		if ($.browser.msie && (parseInt($.browser.version) < 7))
			$('html').css({filter: 'expression(document.execCommand("BackgroundImageCache", false, true))'});

	});

})(jQuery);

