// JavaScript Document

$(function() {
	$('#banner1').hover(
		function(){
			$(this).css("background","url(/img/index/banner/top_ba01_02.gif) no-repeat");
		},
		function(){
			$(this).css("background","url(/img/index/banner/top_ba01.gif) no-repeat");
		}
	);
	$('#banner2').hover(
		function(){
			$(this).css("background","url(/img/index/banner/top_ba02_02.gif) no-repeat");
		},
		function(){
			$(this).css("background","url(/img/index/banner/top_ba02.gif) no-repeat");
		}
	);
	$('#banner3').hover(
		function(){
			$(this).css("background","url(/img/index/banner/top_ba03_02.gif) no-repeat");
		},
		function(){
			$(this).css("background","url(/img/index/banner/top_ba03.gif) no-repeat");
		}
	);
	$('#banner4').hover(
		function(){
			$(this).css("background","url(/img/index/banner/top_ba04_02.gif) no-repeat");
		},
		function(){
			$(this).css("background","url(/img/index/banner/top_ba04.gif) no-repeat");
		}
	);
}); 

