﻿// copyright
function copyright(){
	TYnow = new Date();document.write('2007 - ' + TYnow.getFullYear() +' ' );
}


// index
$(function(){
	//カテゴリインデックス用
	$(".index-pattern .col").click(function(){
		window.location=$(this).find("a").attr("href");
		return false;
	}).mouseover(function(){
		$(this).addClass("linkHover");
		$("img",this).each(function(){
			$(this).attr('src',$(this).attr("src").replace(/(\.gif|\.jpg|\.png)$/,"_on$1"));
		});
	}).mouseout(function(){
		$(this).removeClass("linkHover");
		$("img",this).each(function(){
			$(this).attr('src',$(this).attr("src").replace(/_on(\.gif|\.jpg|\.png)$/, "$1"));
		});
	});
	//ホーム用
	$(".home-nav .col").click(function(){
		window.location=$(this).find("a").attr("href");
		return false;
	}).mouseover(function(){
		$("p img",this).each(function(){
			$(this).attr('src',$(this).attr("src").replace(/(\.gif|\.jpg|\.png)$/,"_on$1"));
		});
	}).mouseout(function(){
		$("p img",this).each(function(){
			$(this).attr('src',$(this).attr("src").replace(/_on(\.gif|\.jpg|\.png)$/, "$1"));
		});
	});
});

