/*
対象の画像上をマウスオーバーしたら、
・画像を差し替え
を行う。画像要素分繰り返す。以下同様
*/
$(function(){
$("li#topmenu01").hover(
	function(){
		$("p#top_mainimg img").attr("src", "img/top/top_mainimg01.jpg");
	},
	function(){
	
});


$("li#topmenu02").hover(
	function(){
		$("p#top_mainimg img").attr("src", "img/top/top_mainimg02.jpg");
	},
	function(){
	
});


$("li#topmenu03").hover(
	function(){
		$("p#top_mainimg img").attr("src", "img/top/top_mainimg03.jpg");
	},
	function(){
	
});


$("li#topmenu04").hover(
	function(){
		$("p#top_mainimg img").attr("src", "img/top/top_mainimg04.jpg");
	},
	function(){
	
});


$("li#topmenu05").hover(
	function(){
		$("p#top_mainimg img").attr("src", "img/top/top_mainimg05.jpg");
	},
	function(){
	
});


/*
サブメニューの表示・非表示
*/
$("li#submenu03").hover(
	function(){
		$("li#submenu03 ul").show();
	},
	function(){
		$("li#submenu03 ul").hide();
});



});















