// JavaScript Document

/*--------------
________ベース.js
-------------*/

$(document).ready(function(){
	
/*--------------
_______ナビロールオーバー
---------------*/

$("img[src='image/base/btn/banner_1.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/banner_1_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/banner_1.png");
})

$("img[src='image/base/btn/banner_2.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/banner_2_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/banner_2.png");
})

$("img[src='image/base/btn/banner_3.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/banner_3_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/banner_3.png");
})

$("img[src='image/base/btn/banner_4.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/banner_4_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/banner_4.png");
})


$("img[src='image/base/btn/banner_5.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/banner_5_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/banner_5.png");
})

$("img[src='image/base/btn/banner_6.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/banner_6_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/banner_6.png");
})

$("img[src='image/base/btn/baner-hotal.jpg']").mouseover(function(){
 $(this).attr("src","image/base/btn/baner-hotal-act.jpg");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/baner-hotal.jpg");
})

$("img[src='image/base/btn/access.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/access_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/access.png");
})

$("img[src='image/base/btn/mail.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/mail_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/mail.png");
})

$("img[src='image/base/btn/access_2.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/access_2_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/access_2.png");
})

$("img[src='image/base/btn/mail_2.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/mail_2_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/mail_2.png");
})

$("img[src='image/base/btn/news.png']").mouseover(function(){
 $(this).attr("src","image/base/btn/news_over.png");
}).mouseout(function(){
 $(this).attr("src","image/base/btn/news.png");
})
 
});
