
/* トップページバナー */
/*
$(document).ready(function(){
	$(".topBan img").mouseover(function(){
	$(this).fadeTo("fast",0.6);
	}).mouseout(function(){
	$(this).fadeTo("slow",1);
	});
});
*/

/* コピーライト */
function year() {  
	var data = new Date();  
	var now_year = data.getFullYear();  
	document.write(now_year);  
}

